Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"eve-online-mcp": {
"args": [
"-y",
"@kongyo2/eve-online-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
このMCPサーバーは、EVE Onlineのマーケットデータにアクセスするためのインターフェースを提供します。ESI(EVE Swagger Interface)APIを使用して、リアルタイムの市場データを取得できます。
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@kongyo2/eve-online-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @kongyo2/eve-online-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in entertainment / data
Query and manage PostgreSQL databases directly from AI assistants
🔥 Official Firecrawl MCP Server - Adds powerful web scraping and search to Cursor, Claude and any other LLM clients.
Manage Supabase projects — databases, auth, storage, and edge functions
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
MCP Security Weekly
Get CVE alerts and security updates for Eve Online Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
このMCPサーバーは、EVE Onlineのマーケットデータにアクセスするためのインターフェースを提供します。ESI(EVE Swagger Interface)APIを使用して、リアルタイムの市場データを取得できます。
このサーバーは現在、パブリックなマーケットデータのみを取得するため、ESI認証は必要ありません。ただし、以下の制限と仕様があります:
レート制限
x-esi-error-limit-remainとx-esi-error-limit-resetで制限状態を確認できますユーザーエージェント
eve-online-mcp/1.0 (github.com/your-username/eve-online-mcp)エラーハンドリング
サーバーは以下の3つの主要な機能を提供します:
市場価格の取得 (get-market-prices)
type_id、adjusted_price、average_price が含まれます市場注文の取得 (get-market-orders)
市場履歴の取得 (get-market-history)
グループ化された市場データの取得 (get-market-groups)
構造体の市場注文取得 (get-structure-orders)
地域の取引所統計取得 (get-market-stats)
構造体の特定アイテム注文取得 (get-structure-type-orders)
To install eve-online-mcp for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @kongyo2/eve-online-mcp --client claude
依存パッケージのインストール:
npm install
プロジェクトのビルド:
npm run build
サーバーの起動:
npm start
このプロジェクトはVS Code用の設定が含まれています:
.vscode/settings.json: MCPサーバーの設定.vscode/tasks.json: ビルドと実行用のタスク以下のタスクが利用可能です:
// すべてのアイテムの価格を取得
const prices = await callTool("get-market-prices");
// The Forge(リージョンID: 10000002)のTritanium(タイプID: 34)の注文を取得
const orders = await callTool("get-market-orders", {
region_id: 10000002,
type_id: 34,
order_type: "all"
});
// The ForgeのTritaniumの市場履歴を取得
const history = await callTool("get-market-history", {
region_id: 10000002,
type_id: 34
});
// The ForgeのTritaniumのグループ化された市場データを取得
const marketGroups = await callTool("get-market-groups", {
region_id: 10000002,
type_id: 34
});
// 構造体ID: 1234567890 の全市場注文を取得
const structureOrders = await callTool("get-structure-orders", {
structure_id: 1234567890,
page: 1
});
// The Forgeの市場統計情報を取得
const marketStats = await callTool("get-market-stats", {
region_id: 10000002
});
// 構造体ID: 1234567890 におけるTritaniumの全市場注文を取得
const typeOrders = await callTool("get-structure-type-orders", {
structure_id: 1234567890,
type_id: 34,
page: 1
});
EVE Online Developers Portalでアプリケーションを登録
以下のスコープを要求:
esi-markets.structure_markets.v1esi-markets.read_character_orders.v1取得したクライアントIDとシークレットを.envファイルに設定:
cp .env.example .env
# .envファイルを編集して認証情報を設定