chord-copilot
Chord's hosted MCP server. Gives an MCP client a read-only window into the customer's Chord data warehouse: schema search, saved views, prior question/SQL pairs, org SQL conventions, table preview, read-only SQL execution, and multi-tenant routing across the Chord organizations the authenticated user belongs to.
One-click install for Cursor, VS Code, Claude, and 20+ other MCP clients, powered by API Commons MCP Install — visit install.apicommons.org for more information.
Endpoint
Hosted endpoint · transport streamable-http
Connect
This is a remote MCP server — point an MCP client at the endpoint URL. Clients with native remote support (Claude, Cursor, VS Code, …):
For stdio-only clients (older Claude Desktop, etc.), bridge with mcp-remote:
If the server requires authentication, add the provider's token/header (e.g. an X-API-Key) per its docs. A quick reachability check:
Tools
search_schema— Discover which tables exist in the warehouse and what they contain. First stop for any data question.search_saved_views— Check whether a user-blessed canonical query already answers the question.search_sql_pairs— Find past question/SQL pairs resembling the user's question, for few-shot grounding.search_instructions— Pull always-apply SQL guidance stored by the org (filters, joins, casing rules, revenue/COGS conventions, test-order exclusion).search_documentation— Answer "how do I…" questions about the Chord Copilot product itself (global, not project-scoped).preview_table— Peek at a handful of rows from a known table. Capped at 100 rows.execute_sql— Run a read-only query (SELECT/UNION/INTERSECT/EXCEPT only, capped at 10000 rows). Accepts validate_only=True to parse-check without executing.ask— Natural-language question answered end to end against the warehouse.list_tenants— List the Chord organizations the authenticated user can reach. Returns [{name, slug, current}]; `current` marks the tenant requests route to.switch_tenant— Change which tenant subsequent calls route to. Takes `slug`; rejected when the caller is not a member. Routing sticks for the session, no re-auth.list_data_sources— List the CDP sources feeding the warehouse.list_audience_syncs— List audience syncs and their state (active / errored / paused).get_sync_run_history— Return run history for a sync, including last successful run and error detail.get_activation_summary— Summarize destinations connected and overall activation health.
About MCP
The Model Context Protocol (MCP) is an open protocol Anthropic introduced for connecting LLM-based agents to external tools and data sources. Providers publish MCP servers that expose their API surface as structured, discoverable tools — an MCP-compatible client (Claude Desktop, Cursor, Cline, Continue, etc.) can connect to the server and call its tools without any per-provider integration code.
Browse every MCP server on the APIs.io network or compare with the broader Agent Skill surfaces of the same providers.