drio
Open app

mcp-server-brian

Source

A MCP server to retrieve transaction calldata from prompts using Brian

Catalog onlyCatalog onlySTDIO

Overview

mcp-server-brian is a simple MCP server that utilizes Brian APIs to retrieve transaction calldata from prompts.

To use mcp-server-brian, install the necessary dependencies using bun install, set up your environment variables by copying the .env.example file to .env, and then run the server with bun run src/index.ts.

  • Easy setup with environment variable configuration - Utilizes Brian APIs for transaction data retrieval - Simple command-line interface for running the server
  1. Retrieving transaction data for blockchain applications
  2. Integrating with other services that require transaction calldata
  3. Developing applications that need to process transaction prompts

Add to your AI client

Use these steps to connect mcp-server-brian in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server-brian-brian-knows": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-brian-brian-knows"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-server-brian-brian-knows": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-brian-brian-knows"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-server-brian-brian-knows": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-brian-brian-knows"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-server-brian-brian-knows": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-brian-brian-knows"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-server-brian-brian-knows": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-brian-brian-knows"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-server-brian-brian-knows": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-server-brian-brian-knows"
      ]
    }
  }
}

FAQ

What programming language is mcp-server-brian written in?

mcp-server-brian is written in TypeScript.

How do I install mcp-server-brian?

You can install it by running `bun install` in your terminal.

Is there any documentation available?

Yes, you can find the documentation in the GitHub repository at https://github.com/brian-knows/mcp-server-brian.