# SeekTable — how to use (mcp.ai)

Connect your SeekTable account and use 5 tools for business intelligence straight from your AI agent. Connect with your own API key. SeekTable is a business intelligence platform for creating, managing, and exporting reports, cubes, and dashboards.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_seek_table?ms=1787293440000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `seek_table_export_report`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/seek_table`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/seek_table/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/seek_table/export/report` — Export a saved SeekTable report in a selected file or data format. This performs one read-only provider request and requires a report ID returned by List Reports.
  - body: { format: string, row_mode?: string, report_id: string, chart_only?: boolean, value_formatting?: boolean, html_inline_style?: boolean }
- `POST https://api.mcp.ai/api/seek_table/get/cube` — Get metadata for one SeekTable cube by its ID.
  - body: { cube_id: string }
- `POST https://api.mcp.ai/api/seek_table/get/report` — Get metadata and serialized configuration for one saved SeekTable report.
  - body: { report_id: string }
- `POST https://api.mcp.ai/api/seek_table/list/cubes` — List cubes in the connected SeekTable account, optionally filtering by provider source type.
  - body: { source_type?: string }
- `POST https://api.mcp.ai/api/seek_table/list/reports` — List saved reports in the connected SeekTable account, including IDs needed by report detail and export tools.

## Example prompts
- "What can I do in SeekTable?"
- "Show me a summary of my SeekTable account"

## More
- Page: https://mcp.ai/seek_table
- Agent spec (llms.txt): https://mcp.ai/seek_table/llms.txt
- Postman collection: https://mcp.ai/seek_table/postman.json
