spring-boot-bitcoin-mcp-server-2025
If you are the rightful owner of spring-boot-bitcoin-mcp-server-2025 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.
A demonstration of a Spring Boot/AI MCP Server that tracks Bitcoin prices using CoinGecko APIs.
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"
]
}
}
}