eve-online-traffic-mcp

eve-online-traffic-mcp

A comprehensive Model Context Protocol (MCP) server for EVE Online traffic, navigation, and system information using both the official ESI API and SDE data.

Category
访问服务器

README

EVE Online Traffic MCP Server

smithery badge

⚠️ Beta Version Notice
This project is currently in beta development. Features may be incomplete, unstable, or subject to significant changes. Use at your own discretion and expect potential breaking changes in future updates.

A comprehensive Model Context Protocol (MCP) server for EVE Online traffic, navigation, and system information using both the official ESI API and SDE data.

Features

This MCP server provides comprehensive tools for EVE Online data access:

Name ↔ ID Conversion

  • Solar System Name to ID: Convert solar system names to IDs for route calculation
  • Station Name to ID: Convert station names to IDs for destination planning
  • Region Name to ID: Convert region names to IDs for regional analysis
  • Universal Name to ID: Convert any EVE Online entity names to IDs (systems, stations, regions, corporations, alliances, etc.)

System Information & Analysis

  • Solar System Info: Get comprehensive system information from both ESI and SDE APIs
  • Stargate Info: Get stargate connections and detailed information
  • System Connection Map: Generate connection maps showing stargate links between systems

Data Sources

  • ESI API: Real-time data from the official EVE Online API
  • SDE API: Static data export for comprehensive universe information
  • Automatic Name Resolution: All IDs are automatically resolved to names (e.g., "30000142 (Jita)")
  • Data Integration: Combines ESI and SDE data for maximum information coverage

API Dependencies

1. EVE Swagger Interface (ESI)

URL: https://esi.evetech.net/meta/openapi-3.0.json

ESIは、EVE Onlineの公式APIです。プレイヤーデータ、キャラクター情報、コーポレーション情報、マーケットデータなど、ゲーム内の様々な情報にアクセスできます。

2. Static Data Export (SDE) - Jita.Space

URL: https://sde.jita.space/latest/swagger.json
ベースURL: https://sde.jita.space/latest

SDE(Static Data Export)は、EVE Onlineのゲーム内静的データを提供するサードパーティAPIです。jita.spaceによって提供されており、アイテム情報、星系データ、NPC情報などの静的データにアクセスできます。

3. EVE-KILL API

URL: https://eve-kill.com/_openapi.json
ベースURL: https://eve-kill.com

EVE-KILLは、EVE Onlineのキルメール追跡と分析を行うモダンなアプリケーションです。アライアンス、キャラクター、コーポレーション、バトル、キルメール、キャンペーンなどの包括的なデータにアクセスできるAPIを提供しています。

Installation

Installing via Smithery

To install eve-online-traffic-mcp for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @kongyo2/eve-online-traffic-mcp --client claude

Manual Installation

git clone https://github.com/kongyo2/eve-online-traffic-mcp.git
cd eve-online-traffic-mcp
npm install

Recommended: MCP Sequential Thinking Tools

For enhanced analysis and complex EVE Online queries, we recommend using this server alongside MCP Sequential Thinking Tools. This combination allows for sophisticated multi-step analysis of EVE Online data, route planning, and strategic decision-making through structured thinking processes.

Usage

Development Mode

Start the server in development mode with interactive CLI:

npm run dev

Production Mode

Start the server for production use:

npm run start

Build

Compile TypeScript to JavaScript:

npm run build

Usage Notes

Language Recommendations for LLM Instructions

When providing instructions to LLMs connected to this MCP server, we recommend using English names for EVE Online entities (solar systems, stations, regions, corporations, etc.) for optimal results. The server's name resolution system is primarily designed around English entity names, and using English ensures better accuracy and consistency in data retrieval.

Examples:

  • ✅ Use: "Jita", "Amarr", "The Forge"
  • ❌ Avoid: Localized names in other languages

Available Tools

Name to ID Conversion Tools

solar_system_name_to_id

Convert solar system names to their IDs.

Parameters:

  • systemNames: Array of solar system names (max 500)

Example:

{
  "systemNames": ["Jita", "Amarr", "Dodixie"]
}

station_name_to_id

Convert station names to their IDs.

Parameters:

  • stationNames: Array of station names (max 500)

region_name_to_id

Convert region names to their IDs.

Parameters:

  • regionNames: Array of region names (max 500)

universal_name_to_id

Convert any EVE Online entity names to their IDs.

Parameters:

  • names: Array of entity names (max 500)

Supported Entity Types:

  • Solar Systems, Stations, Regions, Constellations
  • Corporations, Alliances, Characters, Factions
  • Inventory Types, Agents

System Information Tools

solar_system_info

Get comprehensive solar system information from both ESI and SDE APIs.

Parameters:

  • systemIds: Array of solar system IDs (max 100)

Returns:

  • System name, security status, security class
  • Constellation and region information (with names)
  • 3D coordinates, star information
  • Stargates, stations, planets with names
  • Data source information (ESI/SDE)

Example:

{
  "systemIds": [30000142, 30002187]
}

stargate_info

Get detailed stargate information and connections.

Parameters:

  • stargateIds: Array of stargate IDs (max 50)

Returns:

  • Stargate name and position
  • Source and destination system information
  • Connection details with names

system_connection_map

Generate connection maps showing stargate links between systems.

Parameters:

  • systemIds: Array of solar system IDs (max 50)

Returns:

  • System security status and name
  • All outbound connections with stargate pairs
  • Destination system names

Example:

{
  "systemIds": [30000142]
}

Route Calculation Tools

calculate_route

Calculate the shortest route between two EVE Online solar systems.

Parameters:

  • origin: Origin solar system name or ID
  • destination: Destination solar system name or ID
  • flag: (Optional) shortest (default), secure, or insecure
  • avoidSystems: (Optional) Array of system names or IDs to avoid

Example:

{
 "origin": "Jita",
 "destination": "Amarr",
 "flag": "secure"
}

calculate_multiple_routes

Calculate routes from one origin to multiple destinations.

Parameters:

  • origin: Origin solar system name or ID
  • destinations: Array of destination system names or IDs (max 20)
  • flag: (Optional) shortest (default), secure, or insecure
  • avoidSystems: (Optional) Array of system names or IDs to avoid

Example:

{
 "origin": "Jita",
 "destinations": ["Amarr", "Dodixie", "Rens"],
}

find_systems_in_range

Find all solar systems within a specified jump range from an origin system.

Parameters:

  • origin: Origin solar system name or ID
  • maxJumps: Maximum number of jumps (1-10)
  • flag: (Optional) shortest (default), secure, or insecure
  • avoidSystems: (Optional) Array of system names or IDs to avoid

Example:

{
 "origin": "Jita",
 "maxJumps": 5
}

Available Prompts

eve-entity-lookup

Generate a summary of EVE Online entities with their IDs.

eve-system-analysis

Analyze solar system information and connections with detailed traffic data.

Development

Testing

Run the test suite:

npm run test

Linting

Check code style and formatting:

npm run lint

Formatting

Auto-format code:

npm run format

Example Output

Solar System Information

{
  "success": true,
  "results": [{
    "system_id": 30000142,
    "name": "Jita",
    "constellation_id": 20000020,
    "constellation_name": "Kimotoro",
    "region_id": 10000002,
    "region_name": "The Forge",
    "security_status": 0.946,
    "security_class": "B",
    "stargates": [
      "50001248 (Stargate (Perimeter))",
      "50001249 (Stargate (Sobaseki))"
    ],
    "stations": [
      "60003760 (Jita IV - Moon 4 - Caldari Navy Assembly Plant)"
    ],
    "source": {
      "esi": true,
      "sde": true
    }
  }]
}

System Connection Map

{
  "success": true,
  "results": [{
    "system_id": 30000142,
    "system_name": "Jita",
    "security_status": 0.946,
    "connections": [{
      "destination_system_id": 30000144,
      "destination_system_name": "Perimeter",
      "stargate_id": 50001248,
      "stargate_name": "Stargate (Perimeter)",
      "destination_stargate_id": 50000056,
      "destination_stargate_name": "Stargate (Jita)"
    }]
  }]
}

API Reference

This server uses multiple EVE Online APIs:

ESI API Endpoints

  • POST /universe/ids/ - Convert names to IDs
  • POST /universe/names/ - Convert IDs to names
  • GET /universe/systems/ - Get all solar system IDs
  • GET /universe/systems/{system_id}/ - Get solar system information
  • GET /universe/stargates/{stargate_id}/ - Get stargate information

SDE API Endpoints

  • GET /universe/solarSystems - Get all solar system IDs
  • GET /universe/solarSystems/{solarSystemID} - Get solar system information
  • GET /universe/stargates - Get all stargate IDs
  • GET /universe/stargates/{stargateID} - Get stargate information

Features

  • No Authentication Required: All endpoints use public APIs
  • Automatic Name Resolution: IDs are automatically resolved to human-readable names
  • Data Integration: Combines ESI real-time data with SDE static data
  • Error Resilience: Continues operation even if one API source fails
  • Batch Processing: Efficient handling of multiple requests
  • Comprehensive Testing: Full test coverage for all functionality

License

MIT License - see LICENSE file for details.

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests for new functionality
  5. Run npm run lint and npm run test
  6. Submit a pull request

Acknowledgments

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选