Access the SQD MCP server
Server URL: https://docs.sqd.dev/mcp
Use the SQD MCP server
Connect the SQD MCP server to your preferred AI tools.
Claude Code
Claude
Cursor
VS Code
claude mcp add --transport http SQD https://docs.sqd.dev/mcp
Test the connection:See the Claude Code documentation for more details.Add the SQD MCP server to Claude
- Navigate to the Connectors page in Claude settings.
- Select Add custom connector.
- Add the SQD MCP server:
- Name:
SQD
- URL:
https://docs.sqd.dev/mcp
- Select Add.
Access the MCP server in your chat
- When using Claude, select the attachments button (the plus icon).
- Select the SQD MCP server.
- Ask Claude questions about SQD documentation.
See the Model Context Protocol documentation for more details.Open MCP settings
- Use Command + Shift + P (Ctrl + Shift + P on Windows) to open the command palette.
- Search for “Open MCP settings”.
- Select Add custom MCP. This opens the
mcp.json file.
Configure the SQD MCP server
In mcp.json, add:{
"mcpServers": {
"SQD": {
"url": "https://docs.sqd.dev/mcp"
}
}
}
Test the connection
In Cursor’s chat, ask “What tools do you have available?” Cursor should show the SQD MCP server as an available tool.
See the Cursor documentation for more details.Create a .vscode/mcp.json file and add:{
"servers": {
"SQD": {
"type": "http",
"url": "https://docs.sqd.dev/mcp"
}
}
}
See the VS Code documentation for more details.
search_sqd_documentation
Semantic search across SQD documentation. Returns contextual content with page titles and direct links. Best for broad or conceptual questions.
Parameters:
query (string, required). Search query
Example queries:
- “How do I query EVM logs with Portal API?”
- “Show me Solana indexing examples”
- “What are the supported networks?”
query_docs_filesystem_sqd_documentation
Run read-only shell commands against a virtual filesystem containing all SQD documentation pages and OpenAPI specs. Use this when you need exact keyword matching, regex search, structural exploration, or full page content.
Parameters:
command (string, required). A shell command (rg, grep, cat, head, tree, ls, find, jq, etc.)
Example commands:
tree / -L 2. See the top-level directory layout
rg -il "batch processing" /. Find all files mentioning “batch processing”
rg -C 3 "addLog" /en/sdk/. Show matches with context
head -80 /en/portal/evm/quickstart.mdx. Read a specific page
cat /en/api/catalog/evm/openapi.yaml | head -50. Inspect OpenAPI specs
Start with search_sqd_documentation for broad questions, then use query_docs_filesystem_sqd_documentation to read specific pages or grep for exact patterns.