Connects Claude or any MCP client to BlueColumn's persistent semantic memory API. Exposes three tools: remember for ingesting text, audio, or documents into long-term storage, recall for querying that memory with natural language and getting synthesized answers with sources, and note for storing lightweight agent observations as vectors. Solves the stateless conversation problem by letting agents maintain context across sessions. Free tier includes 60 minutes of audio processing and 100 queries per month. Reach for this when you need your agent to build up knowledge over time rather than starting fresh every conversation.
MCP server for BlueColumn — persistent semantic memory for AI agents.
Give any MCP-compatible agent (Claude Desktop, LangChain, AutoGen, CrewAI) the ability to remember, recall, and store observations across sessions.
| Tool | Description |
|---|---|
remember | Ingest text, audio, or documents into persistent memory |
recall | Query memory with natural language, get AI-synthesized answer + sources |
note | Store lightweight agent observations as searchable vectors |
Sign up free at bluecolumn.ai — 60 min audio + 100 queries/month, no credit card required.
npm install -g bluecolumn-mcp
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"bluecolumn": {
"command": "bluecolumn-mcp",
"env": {
"BLUECOLUMN_API_KEY": "bc_live_YOUR_KEY"
}
}
}
}
Restart Claude Desktop. Your agent now has persistent memory.
Once configured, your agent can:
Remember this: our API uses Voyage AI embeddings at 512 dimensions
→ Uses the `remember` tool automatically
What embedding model does our API use?
→ Uses the `recall` tool to query memory
Note: user prefers bullet points over paragraphs
→ Uses the `note` tool for quick observations
from langchain_mcp import MCPToolkit
toolkit = MCPToolkit(server_name="bluecolumn")
tools = toolkit.get_tools()
# Tools: remember, recall, note — all backed by BlueColumn
| Plan | Price | Audio | Queries |
|---|---|---|---|
| Free | $0 | 60 min/mo | 100/mo |
| Developer | $29/mo | 600 min | 2,000 |
| Builder | $79/mo | 2,000 min | 8,000 |
| Scale | $249/mo | 6,000 min | 20,000 |
BLUECOLUMN_API_KEY*secretYour BlueColumn API key. Get a free key at https://bluecolumn.ai
io.github.ericm1018/skillfm-llm-cost-optimizer-openai-anthropic-usage
io.github.mikerawsonnz/llm-orchestration-agent
io.github.mikerawsonnz/authenticated-llm-agent
labforgedev/copilot-memory-mcp
csoai-org/agent-prompt-injection-firewall-mcp
io.github.mikerawsonnz/authenticated-multi-llm-agent