Bitcoin Model Context Protocol Server logo

Bitcoin Model Context Protocol Server

by kirtiapte

This MCP Server provides an LLM interface for tracking Bitcoin prices using CoinGecko APIs. It was built with the Spring AI MCP project.

View on GitHub

Last updated: N/A

Bitcoin Model Context Protocol Server

This MCP Server provides an LLM interface for tracking Bitcoin prices using CoinGecko APIs (api.coingecko.com/api/v3). It was built with the Spring AI MCP project.

Sample

Sample

Building the Server

./mvnw clean package

Building the Server

./mvnw test

Configuration

You will need to supply a configuration for the server for your MCP Client. Here's what the configuration looks like for claude_desktop_config.json:

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