cyberbrawl-mcp

xbid-ai/cyberbrawl-mcp

3.2

If you are the rightful owner of cyberbrawl-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Model Context Protocol (MCP) server for cyberbrawl.io provides real-time Auction House prices for in-game items, sourced from the Stellar DEX, to AI clients via STDIO or HTTP.

Tools
1
Resources
0
Prompts
0

cyberbrawl-mcp

Model Context Protocol (MCP) server exposing cyberbrawl.io Auction House prices (sourced from Stellar DEX) for in-game items to AI clients (Claude, Cursor, VS Code, xbid-ai) over STDIO or HTTP.

  • Tool: get_prices({ markets, limit, offset })
  • Upstream: https://connect.cyberbrawl.io/listings/prices

Run the server

npm start

Examples

Claude config file (stdio transport)

{
  "mcpServers": {
    "cyberbrawl": {
      "command": "node",
      "args": ["path/to/index.js"],
      "env": {
        "MCP_STDIO": "1"
      }
    }
  }
}

tools/list

curl -sS -X POST http://localhost:3000/mcp -H "Content-Type: application/json" -H "Accept: application/json, text/event-stream" --data '{ "jsonrpc":"2.0","id":"1","method":"tools/list" }'

get_prices — ALL

curl -sS -X POST http://localhost:3000/mcp -H "Content-Type: application/json" -H "Accept: application/json, text/event-stream" --data '{ "jsonrpc":"2.0","id":"1","method":"tools/call","params":{"name":"get_prices","arguments":{"markets":"ALL","limit":100,"offset":0}} }'

get_prices — USDC + XLM

curl -sS -X POST http://localhost:3000/mcp -H "Content-Type: application/json" -H "Accept: application/json, text/event-stream" --data '{ "jsonrpc":"2.0","id":"1","method":"tools/call","params":{"name":"get_prices","arguments":{"markets":["USDC","XLM"],"limit":100,"offset":0}} }'

Disclaimer

This software is experimental and provided as-is, without warranties or guarantees of any kind. Use at your own risk.

License