Bitcoin MCP Server logo

Bitcoin MCP Server

by nlinhvu

A Spring Boot/AI MCP Server that tracks Bitcoin prices using CoinGecko APIs. The implementation in `BitcoinServiceClient` class is generated by Claude 3.7 Sonnet.

View on GitHub

Last updated: N/A

Bitcoin MCP Server

A demonstration of A Spring Boot/AI MCP Server that tracks Bitcoin prices using CoinGecko APIs (api.coingecko.com/api/v3)

Note: The implementation in BitcoinServiceClient class is generated by Claude 3.7 Sonnet

Prerequisites

  • Java 17 or later
  • Maven 3.6 or later
  • Claude Desktop installed with a Claude Account

Build

To integrate with Claude Desktop, need to build a jar file:

./gradlew clean build -x test

Claude Desktop Integration

To integrate with Claude Desktop, add the following configuration to your Claude Desktop settings:

{
  "mcpServers": {
    "bitcoin-mcp-server": {
      "command": "java",
      "args": [
        "-jar",
        "/absolute/path/to/bitcoin-mcp-server-0.0.1-SNAPSHOT.jar"
      ]
    }
  }
}

Additional Resources