Skip to content

Install snippets

This page is for copy-paste configuration after you have chosen a connection style in Installation & usage.

Client snippets

Claude Desktop

Hosted endpoint through mcp-remote:

json
{
  "mcpServers": {
    "blurt": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.blurt-blockchain.com/mcp"]
    }
  }
}

Fully local stdio package:

json
{
  "mcpServers": {
    "blurt": {
      "command": "npx",
      "args": ["-y", "-p", "@blurt-blockchain/blurt-mcp-server", "blurt-mcp-stdio"],
      "env": { "BLURT_ENV_FILE": "/home/you/.config/blurt-mcp/secret.env" }
    }
  }
}

Claude Code

Remote HTTP:

bash
claude mcp add --transport http blurt https://mcp.blurt-blockchain.com/mcp

Local stdio in .mcp.json:

json
{
  "mcpServers": {
    "blurt": {
      "command": "npx",
      "args": ["-y", "-p", "@blurt-blockchain/blurt-mcp-server", "blurt-mcp-stdio"],
      "env": { "BLURT_ENV_FILE": "/home/you/.config/blurt-mcp/secret.env" }
    }
  }
}

OpenAI Codex

Remote HTTP in ~/.codex/config.toml:

toml
[mcp_servers.blurt]
url = "https://mcp.blurt-blockchain.com/mcp"

Local stdio:

toml
[mcp_servers.blurt]
command = "npx"
args = ["-y", "-p", "@blurt-blockchain/blurt-mcp-server", "blurt-mcp-stdio"]

[mcp_servers.blurt.env]
BLURT_ENV_FILE = "/home/you/.config/blurt-mcp/secret.env"

VS Code / GitHub Copilot agent

.vscode/mcp.json using hosted HTTP:

json
{
  "servers": {
    "blurt": {
      "type": "http",
      "url": "https://mcp.blurt-blockchain.com/mcp"
    }
  }
}

Local stdio:

json
{
  "servers": {
    "blurt": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "-p", "@blurt-blockchain/blurt-mcp-server", "blurt-mcp-stdio"],
      "env": { "BLURT_ENV_FILE": "/home/you/.config/blurt-mcp/secret.env" }
    }
  }
}

Cursor

.cursor/mcp.json using hosted HTTP:

json
{
  "mcpServers": {
    "blurt": {
      "url": "https://mcp.blurt-blockchain.com/mcp"
    }
  }
}

Local stdio:

json
{
  "mcpServers": {
    "blurt": {
      "command": "npx",
      "args": ["-y", "-p", "@blurt-blockchain/blurt-mcp-server", "blurt-mcp-stdio"],
      "env": { "BLURT_ENV_FILE": "/home/you/.config/blurt-mcp/secret.env" }
    }
  }
}

Gemini CLI

Hosted HTTP:

bash
gemini mcp add blurt https://mcp.blurt-blockchain.com/mcp

Local stdio in ~/.gemini/settings.json:

json
{
  "mcpServers": {
    "blurt": {
      "command": "npx",
      "args": ["-y", "-p", "@blurt-blockchain/blurt-mcp-server", "blurt-mcp-stdio"],
      "env": { "BLURT_ENV_FILE": "/home/you/.config/blurt-mcp/secret.env" }
    }
  }
}

Hermes Agent

~/.hermes/config.yaml example for hosted HTTP:

yaml
mcp_servers:
  blurt:
    url: https://mcp.blurt-blockchain.com/mcp

Local stdio:

yaml
mcp_servers:
  blurt:
    command: npx
    args: ["-y", "-p", "@blurt-blockchain/blurt-mcp-server", "blurt-mcp-stdio"]
    env:
      BLURT_ENV_FILE: /home/you/.config/blurt-mcp/secret.env

Open WebUI / LibreChat

Use the hosted Streamable HTTP endpoint where the admin UI or configuration accepts remote MCP servers:

text
https://mcp.blurt-blockchain.com/mcp

For LibreChat-style YAML configurations, the exact schema depends on the deployed version. Prefer the client's current MCP documentation and use the hosted URL above or a self-hosted /mcp URL.

Write tools

Write tools are not exposed by the public hosted endpoint. For local signing, configure the stdio package entrypoint and follow write operations. Use a posting key only.