Skip to main content
Glama
zachyt

jita-mcp

by zachyt

jita-mcp

An MCP server that lets Claude (and any other MCP-compatible LLM) actually fit EVE Online ships. The LLM brings the meta knowledge — what's good for what content — and jita-mcp answers the ground-truth questions: does this fit work, what does it actually do, what does it cost?

Stats are computed by pyfa's fitting engine, so ship bonuses, skill multipliers, ammo selection, drone DPS, implant effects, and stacking penalties are all applied correctly. Module prices come live from ESI (Jita 4-4 sell-min, cached per ESI's rules).

What you can ask Claude

"Build me a kinetic-DPS Condor at All V. Use jita-mcp."

"I have a Vexor with Hammerhead IIs. What's the best low-slot DPS mod and tank for a buffer fit? Keep it under 50M ISK."

"Validate this Manticore fit and tell me if it's cap-stable."

"Export this fit to EFT and list every skill I need."

Related MCP server: EVE ESI Tool

Tools

Tool

What it does

get_ship_info

Slot layout, fitting room, base HP and resists, capacities (cargo + drone bay + every specialised hold), ship bonuses, required skills.

get_modules_for_goal

Ranked module candidates for a goal + slot (max DPS, max EHP, max speed, specific damage types). Auto-picks best ammo for damage goals. Returns Jita 4-4 prices per candidate.

calculate_fit

Validates a complete fit. Returns CPU/PG/calibration/drone bay usage, DPS by damage type, EHP per layer, resists, capacitor stability, mobility, sensor stats, total ISK cost, and a list of any problems with actionable messages.

export_eft

Formats a fit as the EFT string EVE / pyfa accept on paste-in, plus the full recursive skill prerequisite list.

The full schemas are exposed via MCP's list_tools; Claude reads them automatically.

Quick start

Requires Python 3.12+ and uv.

# 1. Clone with submodules (pyfa is vendored)
git clone --recurse-submodules https://github.com/zachyt/jita-mcp
cd jita-mcp

# 2. Install deps + build pyfa's data DB (one-time, ~10s)
uv sync
uv run python scripts/build_eve_db.py

# 3. (Optional) Download the Fuzzwork SDE if you want it ready for future
#    universe-data tools
python3 scripts/fetch_sde.py

# 4. Start the server
uv run jita-mcp                              # listens on :8080

Adding it to Claude Code

claude mcp add jita-mcp --transport http http://localhost:8080/mcp

Restart your Claude Code session and the five tools become available. After that, just talk to Claude about EVE fits — it'll call the tools as needed.

Adding it to Claude.ai (web)

Settings → Connectors → Add custom connector → point at your server's HTTPS URL. Requires public HTTPS, so you'll want to deploy it (see Deployment below) or use a tunnel like ngrok.

Day-to-day commands

Command

What it does

uv sync

Install / sync Python deps

uv run jita-mcp

Start the MCP server on :8080

uv run pytest

Run the test suite

uv run ruff check

Lint

uv run python scripts/build_eve_db.py

Rebuild eve.db from pyfa staticdata

Configuration

All via environment variables (defaults in jita_mcp/config.py):

Var

Default

Purpose

JITA_MCP_HOST

0.0.0.0

Bind address

JITA_MCP_PORT

8080

Bind port

JITA_MCP_SDE_PATH

data/sde.sqlite

Fuzzwork SDE path (optional)

Deployment

Build the production container with:

docker build -t jita-mcp:latest .
docker run -p 8080:8080 jita-mcp:latest

The Dockerfile is multi-stage and bakes everything needed (eve.db, the eos source, our Python deps) into the runtime image. Approximate sizes: ~400 MB compressed, ~2 GB on disk.

Point any HTTPS-fronted host (Fly.io, Lightsail, your own VPS) at the container and add the URL as a custom connector in Claude.

License

GPL-3.0-or-later. The project links pyfa's eos engine (LGPL-3.0) and ships pyfa's bundled data; GPL-3.0 satisfies both.

Credits

  • Pyfa — the fitting engine and the EVE data pipeline this server depends on

  • Fuzzwork — the SDE database dumps

  • CCP — for keeping ESI public and free

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    This MCP server allows you to interact with the EVE Tycoon API to retrieve market data, price statistics, order books, and historical pricing information for EVE Online items across different regions.
    6
    4
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    An MCP server that integrates EVE Online's ESI API with AI assistants to enable natural language interaction with character data, market information, and assets. It provides 22 tools for managing skills, wallet balances, ship fittings, and more directly through AI-powered clients.
    2
    MIT
  • F
    license
    A
    quality
    -
    maintenance
    An MCP server that provides Claude with direct access to EVE Online character data, market prices, killboard intelligence, wiki knowledge, and game mechanics. It enables natural language interaction for checking skills, analyzing fittings, setting in-game destinations, and accessing real-time EVE Online information.
    37
  • F
    license
    -
    quality
    C
    maintenance
    MCP server that wraps the Eos EVE Online fitting engine. Agents propose fit changes; this server applies them, recalculates, and returns a FitReport.
    1

View all related MCP servers

Related MCP Connectors

  • MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.

  • Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.

  • Remote MCP server for The Colony — a social network for AI agents (posts, DMs, search, marketplace).

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/zachyt/jita-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server