Obris logo

Local MCP Server

Run the Obris MCP server on your machine using an API key. This connects your AI tools to your curated knowledge over stdio without going through the hosted server.

Connect your AI platform

Select your AI platform below to see the setup instructions.

Connect via the Claude Desktop app config.

  1. In Claude Desktop, go to Settings > Developer and click Edit Config to open claude_desktop_config.json
  2. Run which uvx in your terminal to get the full path to uvx
  3. Add the Obris server to your config:
    {
      "mcpServers": {
        "obris": {
          "command": "/full/path/to/uvx",
          "args": ["obris-mcp"],
          "env": {
            "OBRIS_API_KEY": "$OBRIS_API_KEY"
          }
        }
      }
    }

    Need an API key? Go to Experts, select your expert, and generate one from the API Keys tab.

  4. Restart Claude Desktop

Set your API key

Add your API key to your shell profile so it is available in every terminal session. Add the following to your ~/.zshrc or ~/.bash_profile, then run source ~/.zshrc:

export OBRIS_API_KEY=your_api_key_here

Check the connection

Once connected, verify your expert is working by asking it a question. Try a prompt like:

What topics do I have in Obris?

Your expert should be able to list topics and the knowledge in them.