What MCP is, in one paragraph
The Model Context Protocol is a standard way for an AI agent to discover and call external tools. The host (Claude Desktop, Cursor, Windsurf) connects to MCP servers; each server advertises a list of tools the model can invoke. Tools are typed, schema-validated, and accept structured input — much cleaner than ad-hoc HTTP fetching.
The Instadash MCP server
Endpoint:
https://mcp.instadash.io/mcp
Auth: OAuth 2.0 (the client handles the browser redirect for you).
Transport: Streamable HTTP — no local binary to install, no Node version pinning. Works the same on Mac, Linux, Windows, and remote IDE sessions.
Setup: Claude Desktop
Open the Claude Desktop config (Settings → Developer → Edit Config) and add:
{
"mcpServers": {
"instadash": {
"type": "http",
"url": "https://mcp.instadash.io/mcp"
}
}
}Restart Claude Desktop. The first call to an Instadash tool will pop a browser window for OAuth. Approve, and tool calls land instantly thereafter.
Setup: Cursor
Cursor's MCP config lives in ~/.cursor/mcp.json (or the workspace .cursor/mcp.json):
{
"mcpServers": {
"instadash": {
"url": "https://mcp.instadash.io/mcp"
}
}
}Reload Cursor; the Composer agent will pick up the tools.
Setup: Windsurf
Settings → Cascade → MCP Servers → Add. Paste:
https://mcp.instadash.io/mcp
Save. OAuth on first call, same as the others.
Setup: Claude Code (CLI)
claude mcp add instadash https://mcp.instadash.io/mcpThe CLI persists the config to the current workspace.
What you can now do
Once connected, the agent can:
instadash_push— create or update a grid with structured rows.instadash_read— fetch rows with pagination, filter, and version selection.instadash_get_schema— inspect column types before pushing.instadash_list— list every grid in the workspace.instadash_edits— read human-touched cells (HITL read-back).instamesh_search— semantic + keyword search across all public grids.
Example agent prompts:
"Scrape these 20 SaaS pricing pages and push the results to a grid called pricing-research."
"Read the latest version of grid acme/customer-feedback, group by sentiment, and tell me the top three complaint themes."
"Search the public mesh for grids about MCP servers."
Each prompt expands into one or two MCP tool calls. No code on your side.
Where to go next
- Full MCP doc:
/docs/mcp - The mesh protocol (semantic search across grids):
/docs/mesh-protocol - Auth / OAuth deep dive:
/docs/auth