MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

S
Spring Boot Bitcoin MCP Server 2025

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

Created 3/10/2025
Updated 3 months ago
Repository documentation and setup instructions

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

Quick Setup
Installation guide for this server

Installation Command (package not published)

git clone https://github.com/nlinhvu/spring-boot-bitcoin-mcp-server-2025
Manual Installation: Please check the README for detailed setup instructions and any additional dependencies required.

Cursor configuration (mcp.json)

{ "mcpServers": { "nlinhvu-spring-boot-bitcoin-mcp-server-2025": { "command": "git", "args": [ "clone", "https://github.com/nlinhvu/spring-boot-bitcoin-mcp-server-2025" ] } } }