Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.sqd.dev/llms.txt

Use this file to discover all available pages before exploring further.

Access the SQD MCP server

Server URL: https://beta.docs.sqd.dev/mcp

Use the SQD MCP server

Connect the SQD MCP server to your preferred AI tools.
claude mcp add --transport http SQD https://beta.docs.sqd.dev/mcp
Test the connection:
claude mcp list
See the Claude Code documentation for more details.

Available tools

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.