Install the single-file server.
The current launch path is this versioned direct Voided artifact. It is not published to a package registry yet, so use the verified download below.
curl -fsSLo voided-mcp.mjs https://voidednetwork.com/downloads/voided-mcp.mjs
shasum -a 256 voided-mcp.mjs
VOIDED_ROOT=/absolute/path/to/voided node /absolute/path/to/voided-mcp.mjs- SHA-256
c149448fce0d18b277f6b2652547f1ab0ac882bab85f9b1a069afee3c420a088- Transport
- stdio JSON-RPC
- Server
voided-mcpversion0.1.0- License
- MIT
Point it at a local checkout.
VOIDED_ROOT must be an absolute path to the Voided source checkout the agent should know. Add this server entry using your MCP client’s normal configuration surface.
{
"mcpServers": {
"voided": {
"command": "node",
"args": ["/absolute/path/to/voided-mcp.mjs"],
"env": {
"VOIDED_ROOT": "/absolute/path/to/voided"
}
}
}
}Search from context to source.
voided_get_contextConfirm the checkout, discover crates and packages, and get a compact repository orientation.
voided_list_modulesList first-party Rust, Node.js, browser, and knowledge surfaces.
voided_search_knowledgeSearch docs, READMEs, and examples for concepts and integration rules.
voided_search_codeSearch first-party Rust, TypeScript, and JavaScript source.
voided_find_symbolLocate a named function, type, constant, or export.
voided_read_fileRead a bounded excerpt from a repository-relative text file.
Call context first, search knowledge for intended behavior, find the concrete symbol, then read the smallest relevant excerpt. Search results are capped at 25 and file excerpts at 400 lines.
Knowledge server, not crypto runtime.
- The server is read-only. It does not edit source or execute cryptographic operations.
- It reads the local Voided checkout configured by
VOIDED_ROOT. - It does not need Recovery Deck order, plaintext, raw keys, derived keys, or user data.
- It makes no Voided backend or network request during normal tool operation.
- It is developer knowledge infrastructure, not authentication, recovery, or application runtime behavior.
Use the smallest context surface that fits.
If an agent cannot run a local MCP server, give it a persistent repository instruction, the reusable Voided skill, or a direct reference file instead.
Compare every agent surface →