eve-mentor-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@eve-mentor-mcpWhy do I keep dying in lowsec?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
eve-mentor-mcp
An MCP server that turns Claude into an EVE Online mentor for players trying to learn the game.
EVE has the steepest learning cliff in gaming. Existing tools assume you already know what to ask. This one is built around the questions new players actually have:
"Why do I keep getting blown up?" — pulls your real losses from zKillboard with the full fit you were flying, who killed you, and with what, so Claude can explain exactly what went wrong.
"Is this system dangerous?" — live kill and traffic data for any system.
"What is this thing and what does it cost?" — any ship or module, with live Jita prices.
"What should I do next?" — log in with EVE SSO and Claude sees your skills, skill queue, wallet, location, and current ship, and can coach from your actual situation.
Works with Claude Desktop, Claude Code, and any MCP client.
Tools
Tool | Auth | What it does |
| none | A character's recent losses with full fit detail (zKillboard + ESI) |
| optional | Full recursive skill prerequisite tree + ordered training plan for any ship/module; diffed against your real skills when logged in |
| optional | Paste an EFT fit → can-fly verdict: missing skills to online every module, in training order, with total time |
| none | What pilots actually fly on a ship — the most common modules per slot, learned from recent killmails |
| none | Mechanical fit check: classifies modules and flags classic mistakes (mixed weapons/tank, no propulsion, dead damage mods) |
| none | Which damage type to shoot and tank against a faction or enemy tank, with concrete ammo names |
| none | The EVE career "sorting hat" — Claude interviews you, then matches you to playstyles |
| none | Viable income activities by skillpoint tier, with honest ISK/hr ranges and first steps |
| SSO | Composes your real skills/wallet/location/ship into concrete session suggestions |
| optional | Save a goal the player states, so it persists across sessions (per character) |
| optional | The goals you previously saved, oldest first |
| none | Security status + kills/jumps in the last hour for any system |
| optional | Per-jump security + last-hour kills + named gank chokepoints between two systems |
| optional | An item's cheapest of the 5 trade hubs, with jumps from where you are |
| none | Returning-player briefing: server status, incursions, biggest recent kills, patch-notes link |
| none | Newbie-friendliness signals for a corp (size/age/war/activity) + what to ask |
| none | Item/ship/module description + live Jita buy/sell prices |
| none | Alpha vs Omega vs PLEX economics with today's live Jita PLEX price |
| none | EVE slang glossary — define a term or list everything known |
| optional | One-call session-start orientation: login state, character overview, what's training, last loss |
| — | Browser-based EVE SSO login (OAuth2 PKCE, no secret stored) |
| — | Who's logged in |
| SSO | Skillpoints, wallet, location, current ship |
| SSO | What's training and when it finishes |
| SSO | Highest-trained skills |
| SSO | Everything you own grouped by location, flagging stranded/asset-safety items |
Related MCP server: EVE ESI Tool
Install (no coding required)
You need two things: the Claude Desktop app (or Claude Code) and Node.js, a free runtime that this server runs on — installing it is like installing any other app.
Step 1 — Install Node.js (skip if you have it)
Go to nodejs.org, download the LTS version, run the installer, click through with the defaults. Done.
Step 2 — Tell Claude about it (no download needed)
Claude Desktop: open the config file in any text editor —
Mac:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
(If it doesn't exist, create it.) Make it look like this:
{
"mcpServers": {
"eve-mentor": {
"command": "npx",
"args": ["-y", "eve-mentor-mcp"]
}
}
}Save, then fully quit and reopen Claude Desktop. That's it — npx downloads and runs the
server automatically; updates come free.
Claude Code (one line instead):
claude mcp add eve-mentor -- npx -y eve-mentor-mcpgit clone https://github.com/henryjrobinson/eve-mentor-mcp
cd eve-mentor-mcp
npm install && npm run buildThen point your MCP client at node /FULL/PATH/TO/eve-mentor-mcp/dist/index.js.
Step 3 — Test it
Ask Claude: "Pull the last 3 losses for character <any EVE character name> and explain
what went wrong." If it answers with real killmail data, you're live. No EVE login is
needed for this — losses, system intel, prices, the career test, and the jargon glossary
all work immediately.
Other AI apps
Any MCP-capable client works the same way (Cursor, LM Studio, VS Code, etc. — point them
at node /path/dist/index.js). ChatGPT supports MCP but only remote servers, not
local ones — a hosted version of the public tools is on the roadmap.
Character tools (EVE SSO)
Go to developers.eveonline.com → log in with your EVE account → Create New Application
Name it anything (e.g.
eve-mentor), pick Authentication & API AccessSelect these scopes:
esi-skills.read_skills.v1esi-skills.read_skillqueue.v1esi-location.read_location.v1esi-location.read_ship_type.v1esi-wallet.read_character_wallet.v1esi-assets.read_assets.v1
Set the callback URL to exactly
https://ruby-eve.com/callback— CCP's portal only accepts https callbacks; this static page (source insite/callback/) relays the login code to the local server on port 8484. (Self-hosting? Serve your own copy and setEVE_REDIRECT_URI.)Copy the Client ID and add it to the server's environment:
claude mcp add eve-mentor -e EVE_CLIENT_ID=your_client_id -- npx -y eve-mentor-mcp(or add "env": {"EVE_CLIENT_ID": "your_client_id"} to the Claude Desktop config.)
Then ask Claude to log you in to EVE — a browser opens, you authorize, done. Tokens are stored in ~/.config/eve-mentor/tokens.json (mode 600) and refresh automatically.
Try it
"Pull my last 3 losses for character
Your Pilot Nameand explain what I did wrong in each one."
"I'm about to fly through Tama. How dangerous is it right now?"
"What should I be training next given my skills and the fact that I want to try small-gang PvP?"
Verify it works
npm run smoke # tests ESI name resolution, market, system intel
npm run smoke -- "Pilot Name" # also tests the zKillboard loss pipelineNotes
Data comes from ESI (CCP's official API) and zKillboard. Be a good citizen: this server sends a proper User-Agent and caches name lookups.
Built under the CCP Developer License — non-commercial, as required.
EVE Online and all related trademarks are the property of CCP hf.
Roadmap
All five feature releases (v0.1–v0.5) are shipped — loss analysis, "can I fly it?", career sorting hat, fitting & combat coaching, direction & ISK guidance, pilot memory, and safety/logistics/news. What's left is distribution:
Registry submissions (official MCP registry, Smithery, Glama) and CCP's third-party directory
Remote MCP deployment so no local install is needed (and ChatGPT support)
Full detail in ROADMAP.md. PRs welcome. MIT licensed.
This server cannot be installed
Maintenance
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
- AlicenseAqualityDmaintenanceAn MCP (Model Context Protocol) server that provides OSINT (Open Source Intelligence) capabilities for EVE Online using multiple APIs including ESI, EveWho, and zKillboard. This server allows AI assistants to gather comprehensive intelligence on EVE Online characters, corporations, and alliances byLast updated311MIT
- Alicense-qualityDmaintenanceAn 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.Last updated2MIT
- FlicenseAquality-maintenanceAn 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.Last updated37
- Alicense-qualityBmaintenanceRemote MCP server for EVE Online that validates ship fittings with actual stats, DPS/EHP, and live market prices, enabling LLMs to answer whether a fit works and what it costs.Last updatedGPL 3.0
Related MCP Connectors
MCP server for AI job search — find jobs, track applications, get alerts. Claude, ChatGPT, Cursor.
Augments MCP Server - A comprehensive framework documentation provider for Claude Code
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/henryjrobinson/eve-mentor-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server