# Instadash > Instadash is the MCP-native grid canvas for AI agents. Agents push JSON arrays, humans and agents share a live, queryable, embeddable grid at a stable URL. Every grid auto-exposes JSON, markdown, and plain-text views for crawlers and LLMs. Live MCP server: https://mcp.instadash.io/mcp Tool manifest: https://instadash.io/.well-known/mcp.json Full marketing copy: https://instadash.io/llms-full.txt ## Featured public grids - [USGS Significant Earthquakes (Last 30 Days, M4.5+)](https://instadash.io/showcase/usgs-significant-earthquakes-30d) - All earthquakes of magnitude 4.5 or greater detected by USGS in the last 30 days. Source: https://earthquake.usgs.gov/earthquakes/feed/v1.0/summary/4.5_month.csv - Markdown: https://instadash.io/showcase/usgs-significant-earthquakes-30d/llms.md - [NASA Near-Earth Asteroid Close Approaches (May-Jun 2026)](https://instadash.io/showcase/nasa-near-earth-asteroids-may-jun-2026) - 129 near-Earth asteroid close approaches between 2026-05-13 and 2026-06-09, sourced from NASA's NeoWs (Near-Earth Object Web Service) API. Includes velocity, miss distance, estimated diameter, and haz - Markdown: https://instadash.io/showcase/nasa-near-earth-asteroids-may-jun-2026/llms.md - [FIFA World Cup Winners (1930-2022) - All 22 Editions](https://instadash.io/showcase/world-cup-winners-history) - Complete history of FIFA World Cup champions from the inaugural 1930 tournament in Uruguay through Argentina's 2022 win in Qatar. Year, host, winner, runner-up, final score, and notable moments for ev - Markdown: https://instadash.io/showcase/world-cup-winners-history/llms.md - [FIFA World Cup 2026 - All 48 Qualified Teams](https://instadash.io/showcase/world-cup-2026-qualified-teams) - The full 48-team field for the 2026 FIFA World Cup, organised by group and confederation. Flags for host nations (USA, Mexico, Canada), debutants (Curacao, Jordan, Cape Verde, Uzbekistan), former cham - Markdown: https://instadash.io/showcase/world-cup-2026-qualified-teams/llms.md - [FIFA World Cup 2026 - Full 104-Match Schedule](https://instadash.io/showcase/world-cup-2026-fixtures) - Every match of the 2026 FIFA World Cup - 72 group-stage fixtures plus 32 knockout matches through to the final at MetLife Stadium on July 19. Tournament runs June 11 - July 19, 2026 across USA, Mexico - Markdown: https://instadash.io/showcase/world-cup-2026-fixtures/llms.md - [FIFA World Cup All-Time Top Scorers](https://instadash.io/showcase/world-cup-all-time-top-scorers) - Top 20 goalscorers in FIFA World Cup history (post-2022). Klose leads with 16, Ronaldo 15, Gerd Muller 14. Messi and Mbappe are active for 2026 - Mbappe already on 12 at 27. Source: Wikipedia canonica - Markdown: https://instadash.io/showcase/world-cup-all-time-top-scorers/llms.md - [World Cup 2026 - Debutants and Notable Returns](https://instadash.io/showcase/world-cup-2026-debutants) - Teams making their first-ever World Cup appearance (Curacao, Jordan, Cape Verde, Uzbekistan) and notable returnees after long absences (Algeria, Norway, Scotland, Austria, Iraq, Haiti, DR Congo). 4 de - Markdown: https://instadash.io/showcase/world-cup-2026-debutants/llms.md - [FIFA World Cup 2026 - 16 Host Venues](https://instadash.io/showcase/world-cup-2026-venues) - All 16 stadiums hosting the 2026 FIFA World Cup across USA, Mexico, and Canada. Capacities, host cities, opening match (Estadio Azteca, Mexico City), and final (MetLife Stadium, New Jersey). Static da - Markdown: https://instadash.io/showcase/world-cup-2026-venues/llms.md - [AI Coding IDEs - 2026](https://instadash.io/showcase/ai-coding-ides-2026) - Cursor, Windsurf, Claude Code, Copilot, and JetBrains AI compared on price, MCP support, and target users. As of 2026-05-11. - Markdown: https://instadash.io/showcase/ai-coding-ides-2026/llms.md - [Top MCP Servers by Category - 2026](https://instadash.io/showcase/mcp-servers-2026) - Active MCP servers across dev tools, search, browsers, CRMs, and data. Filter by category or official status. As of 2026-05-11. - Markdown: https://instadash.io/showcase/mcp-servers-2026/llms.md - [AI Agent Frameworks 2026](https://instadash.io/showcase/agent-frameworks-2026) - Live comparison of agent frameworks - language, GitHub stars, design approach, MCP support. Tick the "tracking" column on rows you care about - an agent can read your picks back via the instadash_edit - Markdown: https://instadash.io/showcase/agent-frameworks-2026/llms.md ## Core HTTP API - `POST /ingest` — push rows. Authorization: `Bearer `. Body: JSON array or JSONL. - `GET //` — view a grid (HTML). - `GET ///rows` — fetch grid rows as JSON. - `GET ///meta` — grid metadata (title, description, schema, row count). - `GET ///llms.md` — grid as markdown table. - `GET ///llms.txt` — grid as plain text. - `GET ///edits?source=human` — human-touched cells (HITL read-back). - `GET /api/mesh/search?q=...` — semantic + keyword search across all public grids. ## MCP Tools Hosted at https://mcp.instadash.io/mcp via OAuth 2.1. Canonical machine-readable list at https://instadash.io/.well-known/mcp.json. Write: - `instadash_push` — create/update a grid; returns live URL + embed_url. Supports visibility, editable, ttl_days, action columns. - `instadash_copy` — fork a public grid into your account. - `instadash_update` — change metadata (title, description, tags, visibility, editable) without re-pushing rows. - `instadash_write_cell` — targeted cell write; tagged source=agent for HITL distinguishability. Read: - `instadash_list` — grids in your workspace; `q` substring-filter on slug. - `instadash_get_schema` — columns + sample row. - `instadash_read` — paginated rows; `filter`, `sort`, `q`, `version` params. - `instadash_list_versions` — version history. - `instadash_stats` — per-grid rows/version/storage stats. - `instadash_usage` — account-level usage vs plan limits. HITL & lifecycle: - `instadash_edits` — flat list of cell edits; `source=human|agent`, `since` (ISO). - `instadash_rollback` — restore a previous version as the new latest. - `instadash_delete` — permanently delete a grid you own. Export & discovery: - `instadash_export` — CSV download URL. - `instadash_embed_snippet` — ready-to-paste iframe snippet. - `instamesh_search` — semantic + keyword search across all public grids.