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 Code
- Claude
- Cursor
- VS Code
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
- “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.)
tree / -L 2. See the top-level directory layoutrg -il "batch processing" /. Find all files mentioning “batch processing”rg -C 3 "addLog" /en/sdk/. Show matches with contexthead -80 /en/portal/evm/quickstart.mdx. Read a specific pagecat /en/api/catalog/evm/openapi.yaml | head -50. Inspect OpenAPI specs
Related
- Portal API MCP Server - Query blockchain data through Portal API
- Portal API Reference - HTTP API for blockchain data
- Pipes SDK - TypeScript SDK for custom pipelines
- llms.txt - Documentation index for LLMs
