- Home
- MCP servers
- EVE University Wiki
EVE University Wiki
- typescript
1
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"kongyo2-eve-university-wiki-mcp-server": {
"command": "npx",
"args": [
"tsx",
"/path/to/eve-university-mcp/src/server.ts"
]
}
}
}This MCP server provides access to the EVE University Wiki with automatic Wayback Machine fallback, enabling you to search, read full articles with proper formatting, and discover related topics through a robust, reliable API. It is designed to help AI assistants and developers quickly explore EVE Online knowledge from the wiki content.
How to use
You can use this server with any MCP client over the standard stdio transport. Start a client and point it at the local MCP interface to search for articles, fetch full article content, obtain concise summaries, browse article sections, and discover related topics. If the primary wiki is temporarily unavailable, the server automatically falls back to the Wayback Machine to ensure continued access.
How to install
Prerequisites: Node.js 18+ and npm or yarn.
Install dependencies and set up the project locally.
npm install
Start the server in development mode to test and iterate.
npm run dev
For production, build the project and run the built server.
npm run build
npm run start
If you are using a MCP client like Claude Desktop, configure it to use the stdio-based MCP server as shown in the example configuration.
Configuration and usage notes
The server exposes a set of tools for interacting with the EVE University Wiki. It includes search, full article retrieval, summaries, section listings, internal link discovery, and related topic suggestions. A built-in fallback to the Wayback Machine ensures content remains accessible when the primary wiki is down. Use the provided tools through your MCP client to perform common knowledge queries about EVE Online.
Available tools
search_eve_wiki
Search for articles on EVE University Wiki and return results with titles, snippets, and metadata.
get_eve_wiki_article
Retrieve the full content of a specific wiki article by title.
get_eve_wiki_summary
Get a concise summary of an article by title.
get_eve_wiki_sections
List all sections within an article, including titles, levels, and indices.
get_eve_wiki_links
Fetch all internal links from an article to discover related articles.
get_eve_wiki_related_topics
Find related articles based on article categories with an optional limit.