AI Tools Guide
Guidance to AI tools when working with ZK Compression. Includes MCP server, DeepWiki, and AI Search guides.
Docs AI Search - Search documentation with AI in the search bar.
llms.txt - Site index for LLM navigation: https://zkcompression.com/llms.txt.
Markdown Export - Append
.mdto any page URL for raw markdown.
For Development
Use DeepWiki and its search capabilities (AskDevin) to query the Light Protocol repository in natural language.
DeepWiki generates systematic documentation.
Use AskDevin for help with debugging and technical questions:
MCP
The Model Context Protocol (MCP) is an open standard to connect AI apps to data sources and tools. The DeepWiki MCP server provides access to the Light Protocol repository with its search capabilities (AskDevin).
Installation
We recommend to create a command for Claude Code that includes the tools listed below.
claude mcp add -s user -t http deepwiki https://mcp.deepwiki.com/mcp{
"mcpServers": {
"deepwiki": {
"serverUrl": "https://mcp.deepwiki.com/sse"
}
}
}Tools
The MCP server offers three main tools:
read_wiki_structure - Get a list of documentation topics for a GitHub repository
mcp__deepwiki__read_wiki_structure("Lightprotocol/light-protocol")read_wiki_contents - View documentation about a GitHub repository
mcp__deepwiki__read_wiki_contents("Lightprotocol/light-protocol")ask_question - Ask any question about the GitHub repository and get a context-grounded response
mcp__deepwiki__ask_question("Lightprotocol/light-protocol", "your question")You can specify any public GitHub repo that is indexed with DeepWiki. When you connect to the MCP, you specify the repository when calling the tools. Learn more here.
Next Steps
Start building with compressed tokens or PDAs.
Last updated
Was this helpful?