Tibia MCP Server
Enables AI agents to query TibiaWiki data including creatures, items, NPCs, quests, and more via 19 MCP tools.
README
Tibia MCP Server
A tool that downloads, parses, and indexes all content from TibiaWiki — the wiki for the MMORPG Tibia — and serves it via an MCP (Model Context Protocol) server for AI agents.
Quick Start
The fastest way to get everything running is with Claude Code (Anthropic's official CLI). This project includes a custom skill /start that automates the entire setup:
- Open a terminal at the project root
- Start Claude Code:
claude - Run the skill:
/start
The skill will automatically:
- Check all prerequisites (Docker, Docker Compose, free ports, etc.)
- Create the persistent data directory for PostgreSQL
- Start the database, run the crawler, and launch the MCP server
- Display the ready-to-use MCP URL
MCP URL:
http://localhost:8000/sse
Prerequisites
- Claude Code installed (
npm install -g @anthropic-ai/claude-code) - Docker and Docker Compose V2
- Ports 5432 (PostgreSQL) and 8000 (MCP) available
Persistent Data
PostgreSQL data is stored in ./data/postgres/ on the host machine. This means restarting containers does not lose data — the crawler doesn't need to re-download everything.
Useful Commands
# Watch logs in real-time
docker compose logs -f
# Check service status
docker compose ps
# Stop everything (data preserved)
docker compose down
# Full reset (deletes data)
docker compose down -v && rm -rf ./data/postgres && docker compose up --build -d
MCP Configuration for Claude Desktop
Add to your MCP configuration file:
{
"mcpServers": {
"tibiawiki": {
"url": "http://localhost:8000/sse"
}
}
}
Works with Claude Desktop, Claude Code, Cursor, Windsurf, and any MCP-compatible client.
What It Does
- Downloads all TibiaWiki pages via the MediaWiki API (raw wikitext)
- Parses structured infoboxes from 20 entity types (creatures, items, spells, NPCs, quests, etc.)
- Stores normalized data in PostgreSQL
- Extracts map coordinates and generates tags/summaries per entity
- Serves the data via MCP with 19 tools optimized for AI agent queries
Stack
- Python 3.12
- PostgreSQL 16 — relational storage with materialized views
- FastMCP — MCP server for AI agent integration
- Docker + Docker Compose — containerized environment
- psycopg2, requests, python-dotenv
- pgvector + llama-index (optional) — semantic search via embeddings
Project Structure
src/
main.py # Orchestrator (runs all 6 phases)
mcp_server.py # MCP server with 19 tools
tagger.py # Tag and summary generation
api/ # HTTP client with rate limiting and retry
parser/ # Parsers by infobox type (20 types)
db/ # Connection, migrations, and upserts
migrations/ # 28 numbered SQL files
tests/ # pytest + wikitext fixtures
web/ # Next.js landing page
How It Works
src/main.py runs 6 sequential phases:
Phase 0 → Migrations Apply SQL migrations to the database
Phase 1 → Download Download wikitext from all pages (batches of 50)
Phase 2 → Parse & Import Extract infoboxes and upsert into normalized tables
Phase 3 → Positions Extract {{mapa|X,Y,Z}} coordinates to the positions table
Phase 4 → Tags & Summaries Generate tags (e.g. "boss", "immune_fire") and text summaries
Phase 5 → Materialized Views Refresh creature_drops, npc_trades, quest_bosses, etc.
Supported Entities
| Entity | Table | Infobox |
|---|---|---|
| Creatures | creatures |
Infobox_Criatura |
| Items | items |
Infobox_Item |
| Spells | spells |
Infobox_Spell |
| NPCs | npcs |
Infobox_NPC |
| Quests | quests |
Infobox_Quest |
| Achievements | achievements |
Infobox_Achievement |
| Mounts | mounts |
Infobox_Mount |
| Outfits | outfits |
Infobox_Outfit |
| Imbuements | imbuements |
Infobox_Imbuement |
| Hunts | hunts |
Infobox_Hunts |
| Books | books |
Infobox_Book |
| Buildings | buildings |
Infobox_Building |
| Worlds | worlds |
Infobox_World |
| Runes | runes |
Infobox_Runas |
| World Quests | world_quests |
Infobox_World_Quest |
| World Changes | world_changes |
Infobox_World_Change |
| Familiars | familiars |
Infobox Familiar |
| Tasks | tasks |
Infobox_Tasks |
| Updates | updates |
Infobox_Updates |
| Fansites | fansites |
Infobox_Fansite |
MCP Server
src/mcp_server.py exposes 19 tools for AI agents to query the database. The suggested usage pattern is:
discover → filter → detail
Tools
| Category | Tool | Description |
|---|---|---|
| Discovery | describe_tables |
Database schema, row counts, and column details |
| Discovery | list_entities |
Browse entities by type with pagination |
| Search | search |
Full-text search across all entity types |
| Search | search_by_tags |
Filter by auto-generated tags |
| Search | semantic_search |
Natural language AI-powered search |
| Creatures | creature_full_info |
Complete profile: stats, loot, hunts, quests |
| Creatures | creature_weakness |
Find creatures weak to a specific element |
| Creatures | compare_creatures |
Side-by-side stat comparison |
| Items | where_to_get_item |
Drops, NPC shops, and quest rewards |
| Items | where_to_sell_item |
NPCs that buy the item and their prices |
| Items | items_for_vocation |
Equipment for a class and body slot |
| Hunting | recommend_hunt |
Best hunts by level and vocation |
| Hunting | profit_analysis |
Estimated gold per kill |
| Map | get_map_url |
Generate TibiaWiki map URLs |
| Map | search_by_position |
Find entities near coordinates |
| Map | nearby_entities |
Entities near a named location |
| Advanced | rank_entities |
Top items by price, strongest creatures, etc. |
| Advanced | query_database |
Custom read-only SQL queries |
| Advanced | get_entity |
Full details for any single entity |
Usage Examples
Real questions an AI agent can answer using this MCP:
Equipment recommendation by vocation and level
"What's the recommended set for a Knight level 400?"
The agent uses items_for_vocation("knight") filtering by each slot (helmet, armor, legs, boots, shield, ring) and cross-references with level to build the best combination:
| Slot | Item | Armor/Def | Resistances | Skill Boost |
|---|---|---|---|---|
| Helmet | Spiritthorn Helmet | 12 arm | Physical +6%, Energy +10% | Sword/Club/Axe +3 |
| Armor | Spiritthorn Armor | 20 arm | Physical +13% | Sword/Club/Axe +4 |
| Legs | Falcon Greaves | 10 arm | Physical +7%, Ice +7% | Melee +3 |
| Boots | Pair of Soulwalkers | 4 arm | Physical +7%, Fire +5% | Melee +1, Speed +15 |
| Shield | Soulbastion | 42 def | Physical +10%, Death +10% | — |
| Ring | Charged Spiritthorn Ring | 2 arm | Physical +8%, All Elements +4% | Melee +3 |
Complete quest guide
"How do I complete the Desert Quest?"
The agent uses search("desert quest", entity_type="quests") followed by get_entity("quests", "The Desert Dungeon Quest") to return the full spoiler: preparation, required items, step-by-step path, sacrifice room positioning, and rewards.
NPC locations
"Where are the guards for the Inquisition Quest?"
The agent fetches each NPC with get_entity("npcs", "Walter, The Guard") etc., returning exact coordinates and TibiaWiki map links:
| NPC | Coordinates | Link |
|---|---|---|
| Henricus | 32316, 32268, z8 | map |
| Walter, The Guard | 32341, 32278, z7 | map |
| Tim, The Guard | 32424, 32226, z6 | map |
More examples
- "Creatures weak to fire?" →
creature_weakness("fire") - "Where does Falcon Longsword drop?" →
where_to_get_item("Falcon Longsword") - "Best hunts for Paladin level 250?" →
recommend_hunt(250, "paladin") - "Most expensive items?" →
rank_entities("items", "npc_value") - "Dragon Lord vs Frost Dragon?" →
compare_creatures("Dragon Lord", "Frost Dragon") - "Where to sell Demon Helmet?" →
where_to_sell_item("Demon Helmet") - "Profit per kill at Hydra?" →
profit_analysis("Hydra")
Local Setup (without Docker)
# 1. Copy and edit the configuration file
cp .env.example .env
# 2. Install dependencies
pip install -r requirements.txt
# 3. Run the downloader
python -m src.main
# 4. Start the MCP server
python -m src.mcp_server
Tests
pytest tests/
Fixtures in tests/fixtures/ contain real wikitext samples for testing parsers.
Semantic Search (optional)
To enable semantic search with embeddings:
- Install the optional dependencies in
requirements.txt(uncomment thellama-indexlines) - Make sure the
pgvectorextension is enabled in PostgreSQL (migration027_enable_pgvector.sql) - Run
python -m src.indexerafter the download
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.