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-serverConfiguration
Add to your MCP client’s configuration:
{
"mcpServers": {
"contextnest": {
"command": "contextnest-mcp-server",
"args": ["--vault", "/path/to/your/vault"]
}
}
}Available tools
Read operations
| Tool | Description |
|---|---|
vault_info | Get vault metadata and stats |
resolve | Resolve a selector query |
read_document | Read a specific document |
list_documents | List documents with filters |
search | Full-text search |
get_history | Get version history for a document |
get_pack | Get pack details |
list_packs | List all packs |
Write operations
| Tool | Description |
|---|---|
create_document | Create a new document |
update_document | Update an existing document |
delete_document | Delete a document |
publish_document | Publish a document |
validate | Validate documents |
verify | Verify 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