ContextVault
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ContextVaultstore my current task: working on login"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ContextVault
Shared context storage for AI agents. Any MCP-compatible model (Claude, ChatGPT, Gemini) can store, read, and search context entries through the MCP server. A web UI lets you browse and manage everything.
Architecture
Claude / ChatGPT / Gemini
│ (MCP stdio)
▼
┌──────────────┐
│ MCP Server │──────┐
└──────────────┘ │
▼
┌──────────────┐ ┌──────────┐
│ Web UI │──▶│ Express │──▶ PostgreSQL
└──────────────┘ └──────────┘Express API (
src/index.ts) — REST API + serves the React UIMCP Server (
src/mcp.ts) — stdio MCP server for AI agentsPostgreSQL — persistent storage with JSONB tags and GIN index
Related MCP server: mcp-awareness
Quick Start (Docker)
docker compose upOpen http://localhost:3000 for the UI. Postgres runs on port 5432.
Local Development
Prerequisites: Node.js 20+, PostgreSQL running locally.
# Create the database
createdb context_vault
# Install and build
npm install
cd client && npm install && npm run build && cd ..
npm run build:server
# Start the web server
npm start
# Or run the MCP server for AI agents
npm run mcpSet DATABASE_URL env var if your Postgres isn't at the default postgresql://postgres:postgres@localhost:5432/context_vault.
MCP Configuration
Claude Code / Claude Desktop
{
"mcpServers": {
"context-vault": {
"command": "node",
"args": ["/absolute/path/to/context-vault/dist/mcp.js"],
"env": {
"DATABASE_URL": "postgresql://postgres:postgres@localhost:5432/context_vault"
}
}
}
}Deploy to GCP (Cloud Run)
# Build and push
gcloud builds submit --tag gcr.io/PROJECT_ID/context-vault
# Deploy
gcloud run deploy context-vault \
--image gcr.io/PROJECT_ID/context-vault \
--set-env-vars DATABASE_URL=postgresql://... \
--port 8080 \
--allow-unauthenticatedAPI
Method | Path | Description |
GET |
| Dashboard stats |
GET |
| List namespaces |
GET |
| List entries (query: |
GET |
| Search entries |
GET |
| Get one entry |
POST |
| Create/upsert entry |
PUT |
| Update entry |
DELETE |
| Delete entry |
MCP Tools
Tool | Description |
| Store or upsert a context entry |
| Retrieve a specific entry |
| Partially update an entry |
| Delete an entry |
| List entries with filters |
| Search by keyword |
| List all namespaces |
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/arsenkylyshbek/context-vault'
If you have feedback or need assistance with the MCP directory API, please join our Discord server