Coincap Mcp
概要
CoinCap MCPとは何ですか?
CoinCap MCPは、CoinCap APIを通じて暗号通貨データにアクセスするために設計されたサーバーです。ユーザーに対して、さまざまな暗号通貨の価格、市場資本化、取引量などのリアルタイム情報を提供します。このツールは、暗号通貨データをアプリケーションやウェブサイトに統合したい開発者や愛好者にとって不可欠です。
CoinCap MCPの特徴
- リアルタイムデータアクセス:CoinCap MCPは、ユーザーがライブの暗号通貨データを取得できるようにし、情報が常に最新であることを保証します。
- 包括的なAPIサポート:サーバーは幅広いAPIエンドポイントをサポートしており、ユーザーがさまざまな暗号通貨に関する詳細情報にアクセスできるようにします。
- ユーザーフレンドリーなインターフェース:インターフェースは直感的に設計されており、ユーザーが必要なデータを簡単にナビゲートして取得できるようになっています。
- オープンソース:CoinCap MCPは公開されており、開発者がその開発に貢献し、自分のニーズに合わせてカスタマイズできます。
- コミュニティサポート:オープンソースプロジェクトであるため、サポートを提供し、改善を共有する成長するコミュニティがあります。
CoinCap MCPの使い方
- インストール:次のコマンドを使用してGitHubからリポジトリをクローンします:
git clone https://github.com/QuantGeekDev/coincap-mcp.git
- セットアップ:プロジェクトディレクトリに移動し、必要な依存関係をインストールします:
cd coincap-mcp npm install
- サーバーを実行:次のコマンドでサーバーを起動します:
npm start
- APIにアクセス:提供されたエンドポイントを使用して暗号通貨データにアクセスします。たとえば、ビットコインの現在の価格を取得するには、次のGETリクエストを行います:
http://localhost:3000/api/cryptocurrency/bitcoin
- アプリケーションに統合:APIのレスポンスをアプリケーション内で利用して、暗号通貨データを動的に表示します。
よくある質問
Q1: CoinCap MCPで使用できるプログラミング言語は何ですか?
A1: CoinCap MCPはJavaScriptとNode.jsで構築されていますが、HTTPリクエストをサポートする任意のプログラミング言語でそのAPIにアクセスできます。
Q2: CoinCap MCPは無料で使用できますか?
A2: はい、CoinCap MCPはオープンソースプロジェクトであり、無料で使用できます。開発に貢献することもできます。
Q3: CoinCap MCPにどのように貢献できますか?
A3: リポジトリをフォークし、変更を加え、GitHubでプルリクエストを提出することで貢献できます。
Q4: CoinCap APIのドキュメントはどこで見つけられますか?
A4: CoinCap APIのドキュメントは通常、公式CoinCapウェブサイトまたはリポジトリのREADMEファイル内で見つけることができます。
Q5: CoinCap MCPを商業目的で使用できますか?
A5: はい、オープンソースであるため、商業アプリケーションにCoinCap MCPを使用できますが、ライセンス条件を遵守することを確認してください。
詳細
Coincap MCP
What does this server do?
Allows you to query crypto information from coincap's public API - no API keys or registration required
🚀 Quick Start
To get started, add this configuration to your Claude Desktop config file:
MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"mongodb": {
"command": "npx",
"args": ["coincap-mcp"]
}
}
}
Installing via Smithery
To install Coincap for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install coincap-mcp --client claude
Prerequisites
- Node.js 18+
- npx
Then, launch Claude Desktop and you're ready to go!
Sample Prompts
- What is the price of bitcoin?
- What are the available crypto assets?
- What is the market cap of ethereum?
Tools
Bitcoin Price Tool
Gets price for Bitcoin specifically, it's a simple example of a primitive API call tool
Get Crypto Price Tool
Gets price for any cryptocurrency available on coincap API. It's a good example of how to get mandatory parameter data for your tool calls
List Assets
Gets a list of all crypto assets available in coincap API
Development - local build
To build it locally:
On MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"coincap-mcp": {
"command": "/path/to/coincap-mcp/build/index.js"
}
}
}
Development
Install dependencies:
npm install
Build the server:
npm run build
For development with auto-rebuild:
npm run watch
📜 License
This project is licensed under the MIT License - see the LICENSE file for details.
サーバー設定
{
"mcpServers": {
"coincap-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"ghcr.io/metorial/mcp-container--quantgeekdev--coincap-mcp--coincap-mcp",
"node build/index.js"
],
"env": {}
}
}
}