home / mcp / eve tycoon mcp server

EVE Tycoon MCP Server

Provides access to EVE Tycoon market data via MCP endpoints for statistics, orders, and history across regions.

Installation
Add the following to your MCP client configuration file.

Configuration

View docs
{
  "mcpServers": {
    "kongyo2-evetycoon-mcp-server": {
      "url": "https://evetycoon.com/api"
    }
  }
}

You run an MCP server that gives you programmatic access to EVE Tycoon market data. It lets you retrieve real-time statistics, current order books, and historical prices for EVE Online items across regions, enabling powerful market analyses and automation workflows.

How to use

You connect your MCP client to the evetycoon MCP server to query market data. Use the available tools to fetch statistics, current orders, and price history, or pull lists of regions and market groups to guide your analyses. The server exposes a consistent set of endpoints that return structured data you can consume in your analytics pipelines, dashboards, or trading tools.

How to install

Prerequisites: Node.js (version 14+ recommended) and npm are required to install and run the MCP server locally.

Clone the project repository to your development machine and navigate into the project directory.

Install dependencies.

git clone https://example.com/evetycoon-mcp-server.git
cd evetycoon-mcp-server
npm install

Build the project so you can run it in production or development modes.

npm run build

Start the server in development mode to test and iterate.

npm run dev

Additional configuration and notes

The MCP server connects to the EVE Tycoon API at https://evetycoon.com/api for public endpoints. No authentication is required for these endpoints. You can rely on the upstream API's Expires header for caching hints; the MCP server will pass through that caching information to clients.

Common usage patterns include querying market statistics for a specific region and type, retrieving the current market orders for an item, and pulling price history to identify trends. You can also fetch the list of all regions, market groups, and the item types within a market group to drive exploratory analyses.

Available tools

get_market_stats

Retrieve price and volume statistics for a given item type in a selected region.

get_market_orders

Fetch the current market order book for a type, with optional regional filtering and metadata.

get_market_history

Obtain historical price data for an item in a region to analyze trends.

get_regions

List all available EVE Online regions.

get_market_groups

List all market groups available in the EVE Tycoon dataset.

get_market_group_types

List the item types contained within a specific market group.