home / mcp / eve tycoon mcp server
Provides access to EVE Tycoon market data via MCP endpoints for statistics, orders, and history across regions.
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.
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.
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 installBuild the project so you can run it in production or development modes.
npm run buildStart the server in development mode to test and iterate.
npm run devThe 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.
Retrieve price and volume statistics for a given item type in a selected region.
Fetch the current market order book for a type, with optional regional filtering and metadata.
Obtain historical price data for an item in a region to analyze trends.
List all available EVE Online regions.
List all market groups available in the EVE Tycoon dataset.
List the item types contained within a specific market group.