drio
Open app

Bitcoin Model Context Protocol Server

Source

Catalog onlyCatalog onlySTDIO

Overview

The Bitcoin Model Context Protocol Server is an LLM interface designed for tracking Bitcoin prices using CoinGecko APIs. It integrates with the Spring AI MCP project to provide real-time data on cryptocurrency prices.

To use the server, you need to build it using Maven and configure it with the appropriate settings for your MCP Client. The server can be started with a Java command that points to the built JAR file.

  • Real-time tracking of Bitcoin prices using CoinGecko APIs. - Built with Spring AI MCP for enhanced functionality. - Easy configuration for integration with MCP Clients.
  1. Monitoring Bitcoin price fluctuations for trading strategies.
  2. Integrating with applications that require real-time cryptocurrency data.
  3. Providing a backend service for cryptocurrency-related projects.

Add to your AI client

Use these steps to connect Bitcoin Model Context Protocol Server 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": {
    "bitcoin-mcp-server-kirtiapte": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitcoin-mcp-server-kirtiapte"
      ]
    }
  }
}

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": {
    "bitcoin-mcp-server-kirtiapte": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-bitcoin-mcp-server-kirtiapte"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What programming language is used for the server?

The server is built using Java.

How can I configure the server?

You need to provide a configuration file that specifies the server settings for your MCP Client.

Is there any documentation available?

Yes, you can find the documentation for the Spring AI MCP project [here](https://docs.spring.io/spring-ai-mcp/reference/spring-mcp.html).