Back to MCP Servers
🔌

dcostenco/prism-mcp

NOASSERTIONAPI key required

](https://glama.ai/mcp/servers/dcostenco/BCBA) 📇 🏠 🍎 🪟 🐧 - Zero-config persistent memory for AI agents with local SQLite. Mind Palace web dashboard, time travel (rewind/replay sessions), agent te

TypeScriptDatabases

Install

npx -y -y prism-mcp-server

Required environment variables

BRAVE_API_KEYSet in your MCP config
FIRECRAWL_API_KEYSet in your MCP config
GOOGLE_API_KEYSet in your MCP config
VOYAGE_API_KEYSet in your MCP config
OPENAI_API_KEYSet in your MCP config
SUPABASE_KEYSet in your MCP config
SYNALUX_API_KEYSet in your MCP config
BRAVE_ANSWERS_API_KEYSet in your MCP config
ANTHROPIC_API_KEYSet in your MCP config
HONEYCOMB_API_KEYSet in your MCP config

claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "dcostenco-prism-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-y",
        "prism-mcp-server"
      ],
      "env": {
        "BRAVE_API_KEY": "<YOUR_BRAVE_API_KEY>",
        "FIRECRAWL_API_KEY": "<YOUR_FIRECRAWL_API_KEY>",
        "GOOGLE_API_KEY": "<YOUR_GOOGLE_API_KEY>",
        "VOYAGE_API_KEY": "<YOUR_VOYAGE_API_KEY>",
        "OPENAI_API_KEY": "<YOUR_OPENAI_API_KEY>",
        "SUPABASE_KEY": "<YOUR_SUPABASE_KEY>",
        "SYNALUX_API_KEY": "<YOUR_SYNALUX_API_KEY>",
        "BRAVE_ANSWERS_API_KEY": "<YOUR_BRAVE_ANSWERS_API_KEY>",
        "ANTHROPIC_API_KEY": "<YOUR_ANTHROPIC_API_KEY>",
        "HONEYCOMB_API_KEY": "<YOUR_HONEYCOMB_API_KEY>"
      }
    }
  }
}

Add this to your Claude Desktop config file. Find it at ~/Library/Application Support/Claude/claude_desktop_config.json on macOS.

What this does

dcostenco/prism-mcp exposes a set of tools to Claude over the Model Context Protocol. After you add it to claude_desktop_config.json (snippet above) and restart Claude Desktop, those tools become callable inside any conversation. That makes it useful when you want Claude to reach into your databases without copy-pasting context every turn.

Requirements

This server needs the following environment variables to be set before it can run:

BRAVE_API_KEY
FIRECRAWL_API_KEY
GOOGLE_API_KEY
VOYAGE_API_KEY
OPENAI_API_KEY
SUPABASE_KEY
SYNALUX_API_KEY
BRAVE_ANSWERS_API_KEY
ANTHROPIC_API_KEY
HONEYCOMB_API_KEY

Set these via the env object in your MCP config (see claude_desktop_config.json snippet above).

Common use cases

  • Query structured data without writing SQL by hand
  • Let Claude read table schemas before answering data questions
  • Run read-only operational reports or sanity checks during incidents