Connect your AI tools to your personal knowledge vault
Requirement: MCP integration is available exclusively for ProAI and Ultra subscribers.
Model Context Protocol (MCP) allows you to connect external AI tools to your Context Capsule vault. Your capsules become a memory layer that AI assistants can query, making them smarter with your personal knowledge.
Compatible tools include:
| Tier | Monthly Requests | Storage | Price |
|---|---|---|---|
| ProAI | 5,000 | 50 GB | $19.99/mo |
| Ultra | 10,000 | 100 GB | $39.99/mo |
Limits are request-based only. No data transfer limits through MCP.
read and/or writeSecurity: Treat your API key like a password. Never share it publicly or commit it to version control.
Endpoint:
https://your-domain.replit.app/api/mcp
Authentication: Bearer token
Authorization: Bearer cc_your_api_key_here
List all capsules in your vault.
folderId (optional), limit (optional, default 50, max 100)
Get the full content of a specific capsule.
capsuleId (required)
Search capsules by keyword.
query (required), limit (optional, default 20, max 50)
Create a new capsule. Requires write scope.
title (required), content (required), tags (optional), folderId (optional)
List all folders in your vault.
Get a summary of your vault including counts and storage usage.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_capsules",
"arguments": {
"query": "project notes",
"limit": 10
}
}
}
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [
{
"type": "text",
"text": "[{\"id\": \"abc123\", \"title\": \"Project Notes\", ...}]"
}
]
}
}
Add to your claude_desktop_config.json:
{
"mcpServers": {
"context-capsule": {
"command": "curl",
"args": [
"-X", "POST",
"-H", "Authorization: Bearer cc_your_api_key",
"-H", "Content-Type: application/json",
"https://your-domain.replit.app/api/mcp"
]
}
}
}
POSTAuthorizationBearer cc_your_api_keywrite if neededContact our support team at info@1450enterprises.com for MCP integration assistance.