Skip to content

Commit 6c65975

Browse files
pengyingclaude
andcommitted
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) <noreply@anthropic.com>
1 parent 49e7450 commit 6c65975

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

mintlify/platform-overview/building-with-ai.mdx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,35 @@ It'll prompt you for your API Token ID and Client Secret, validate them, and sav
105105
Start in the sandbox environment to experiment safely. The Skill is great at generating fake account data to help you test different flows.
106106
</Tip>
107107

108+
## MCP server
109+
110+
Grid provides a [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) server that gives AI agents access to Grid's documentation. Use it to build agentic workflows that can search and retrieve Grid API docs programmatically.
111+
112+
```
113+
https://grid.lightspark.com/mcp
114+
```
115+
116+
The MCP server exposes two tools:
117+
118+
- **`search_grid_api_documentation`** — Search the Grid docs for relevant guides, code examples, and API references
119+
- **`get_page_grid_api_documentation`** — Retrieve the full content of a specific documentation page
120+
121+
<Info>
122+
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.
123+
</Info>
124+
125+
Add it to any MCP-compatible client (Claude Desktop, Cursor, Windsurf, etc.) using the streamable HTTP transport:
126+
127+
```json
128+
{
129+
"mcpServers": {
130+
"grid-api-docs": {
131+
"url": "https://grid.lightspark.com/mcp"
132+
}
133+
}
134+
}
135+
```
136+
108137
## Example prompts
109138

110139
Try these prompts in Claude Code or paste them into your AI assistant of choice:

0 commit comments

Comments
 (0)