From 5218fcace85ed890af1f836fe19fff2f6f543e3a Mon Sep 17 00:00:00 2001 From: Peng Ying Date: Fri, 10 Apr 2026 15:51:48 -0700 Subject: [PATCH] docs: add MCP server section to Building with AI page Adds documentation for the Grid MCP server (grid.lightspark.com/mcp) including available tools, config snippet, and a note that it provides documentation access for agentic workflows, not direct API interaction. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../platform-overview/building-with-ai.mdx | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/mintlify/platform-overview/building-with-ai.mdx b/mintlify/platform-overview/building-with-ai.mdx index b6a8508c..9c78403a 100644 --- a/mintlify/platform-overview/building-with-ai.mdx +++ b/mintlify/platform-overview/building-with-ai.mdx @@ -105,6 +105,35 @@ It'll prompt you for your API Token ID and Client Secret, validate them, and sav Start in the sandbox environment to experiment safely. The Skill is great at generating fake account data to help you test different flows. +## MCP server + +Grid provides a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that gives AI agents access to Grid's documentation, so your agentic workflows have full context of the Grid API during implementation. + +``` +https://grid.lightspark.com/mcp +``` + +The MCP server exposes two tools: + +- **`search_grid_api_documentation`** — Search the Grid docs for relevant guides, code examples, and API references +- **`get_page_grid_api_documentation`** — Retrieve the full content of a specific documentation page + + +The MCP server provides documentation access to support agentic implementation workflows. It does not yet support interacting with the Grid API directly — use the [Grid API agent skill](#install-the-grid-api-agent-skill) or direct API calls for that. + + +Add it to any MCP-compatible client (Claude Desktop, Cursor, Windsurf, etc.) using the streamable HTTP transport: + +```json +{ + "mcpServers": { + "grid-api-docs": { + "url": "https://grid.lightspark.com/mcp" + } + } +} +``` + ## Example prompts Try these prompts in Claude Code or paste them into your AI assistant of choice: