Skip to Content
MCP Server

MCP Server

The Context Nest MCP server exposes vault operations as tools that any MCP-compatible AI client can use.

Install

npm install -g @promptowl/contextnest-mcp-server

Configuration

Add to your MCP client’s configuration:

{ "mcpServers": { "contextnest": { "command": "contextnest-mcp-server", "args": ["--vault", "/path/to/your/vault"] } } }

Available tools

Read operations

ToolDescription
vault_infoGet vault metadata and stats
resolveResolve a selector query
read_documentRead a specific document
list_documentsList documents with filters
searchFull-text search
get_historyGet version history for a document
get_packGet pack details
list_packsList all packs

Write operations

ToolDescription
create_documentCreate a new document
update_documentUpdate an existing document
delete_documentDelete a document
publish_documentPublish a document
validateValidate documents
verifyVerify hash chains

How it works

The MCP server wraps the same engine used by the CLI. It reads from and writes to the vault on disk, providing AI clients with structured access to your knowledge.

Any AI client that supports MCP — Claude, Cursor, VS Code with Copilot, and others — can connect to the Context Nest server and operate on your vault using these tools.

Last updated on