Reference
Install GNO as an MCP server for Claude Desktop, Cursor, Zed, Windsurf, Amp, Raycast, and more.
Model Context Protocol (MCP) is how AI assistants access external tools. GNO ships a production-grade MCP server with 19 tools for search, retrieval, graph exploration, and indexing. One-line install for every major client.
gno mcp install # auto-detects clients
gno mcp install --target cursor
gno mcp install --target zed
gno mcp install --target claude-desktop
gno mcp install --target windsurf
gno mcp install --target ampEach target adds GNO to the correct config file for that client. Restart the client to pick up the new server.
19 tools across retrieval, navigation, and indexing:
search, vsearch, query, ask — the retrieval pipelineget, multi_get — fetch documents by idlinks, backlinks, similar — navigate connectionsgraph — explore the knowledge graphcollections_list — discover available collectionstags_list, tags_filter — work with tag taxonomycapture — create a new note (disabled by default)sync, embed, index — indexing operations (disabled by default)Write tools (capture, sync, embed, index) are disabled by default so your AI client can’t accidentally modify the corpus. Enable them explicitly per client:
gno mcp install --target cursor --allow-writeGNO exposes every document as an MCP resource, so clients can fetch a file by URI without going through a tool call.
gno://documents/<id>
gno://collections/<name>