
Bitcoin MCP Server
A demonstration of A Spring Boot/AI MCP Server that tracks Bitcoin prices using CoinGecko APIs (api.coingecko.com/api/v3)
What is Bitcoin MCP Server?
Bitcoin MCP Server is a demonstration of a Spring Boot/AI MCP Server that tracks Bitcoin prices using CoinGecko APIs.
How to use Bitcoin MCP Server?
To use the Bitcoin MCP Server, ensure you have Java 17 or later and Maven 3.6 or later installed. Build the project using the command ./gradlew clean build -x test
, and integrate it with Claude Desktop by adding the specified configuration to your settings.
Key features of Bitcoin MCP Server?
- Tracks real-time Bitcoin prices using CoinGecko APIs.
- Built with Spring Boot for easy integration and deployment.
- Supports integration with Claude Desktop for enhanced functionality.
Use cases of Bitcoin MCP Server?
- Monitoring Bitcoin price fluctuations in real-time.
- Integrating with other applications for cryptocurrency tracking.
- Demonstrating the use of Spring Boot in building API servers.
FAQ from Bitcoin MCP Server?
- What are the prerequisites for running the Bitcoin MCP Server?
You need Java 17 or later and Maven 3.6 or later installed on your machine.
- How do I integrate the server with Claude Desktop?
You need to build a jar file and add the specified configuration to your Claude Desktop settings.
- Where can I find more information about CoinGecko APIs?
You can refer to the CoinGecko APIs References for more details.
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"
]
}
}
}