Wikexa
Provides full-text search and retrieval of Wikibooks content through the Wikexa API.
Provides structured facts and entity resolution (Q-ids) from Wikidata, including aliases and related entities.
Provides structured access to Wikipedia articles, summaries, infoboxes, and facts via lookup, article, search, and recent tools.
Provides full-text search and retrieval of Wikiquote content through the Wikexa API.
Provides full-text search and retrieval of Wikiversity content through the Wikexa API.
Provides full-text search and retrieval of Wikivoyage content through the Wikexa API.
Wikexa
Structured knowledge for AI agents. Wikipedia, Wikidata and Wiktionary as clean JSON instead of HTML. ~30x fewer tokens than fetching the page yourself.
MCP endpoint:
https://wikexa.com/mcpRegistry:
com.wikexa/knowledgeHomepage: wikexa.com
Agent guide: wikexa.com/agents
Docs: wikexa.com/docs
llms.txt: wikexa.com/llms.txt
Why
An agent fetching en.wikipedia.org/wiki/Apple_Inc. burns ~15,000 tokens of HTML
to recover ~500 tokens of facts. Wikipedia's own API returns wikitext, which is
barely better. One lookup() call here returns the facts directly.
Related MCP server: Swiss Truth MCP
Tools
Tool | What it gives you |
| Structured facts + ~200-token summary. Resolves aliases and Q-ids. |
| Full article as structured JSON — sections as an array, infobox as key/value. No HTML or wikitext. |
| Dictionary definitions from Wiktionary — 8.15M entries across ~4,000 languages. Grouped by language, with etymology and pronunciation. |
| Ranked matches blending relevance, pageviews, and exact-title matching. Up to 50 results. |
| Recently changed articles — facts newer than your training cutoff. |
Every tool is also a REST endpoint backed by the same handler:
GET https://wikexa.com/v1/lookup?entity=Tim%20Cook
GET https://wikexa.com/v1/article?title=Apple%20Inc.§ions=History
GET https://wikexa.com/v1/define?word=serendipity&language=English
GET https://wikexa.com/v1/search?query=quantum%20computing&limit=5
GET https://wikexa.com/v1/recent?topic=electionExample
curl -s 'https://wikexa.com/v1/lookup?entity=Tim%20Cook'{
"title": "Tim Cook",
"wikidata_id": "Q265852",
"description": "American business executive (born 1960)",
"summary": "Timothy Donald Cook is an American business executive...",
"infobox": { "born": "1960-11-01", "education": "Auburn University; Duke University", "title": "CEO of Apple Inc." },
"facts": { "occupation": "business executive", "employer": "Apple Inc.", "citizenship": "United States" },
"related": ["Apple Inc.", "Steve Jobs", "iPhone"],
"source_url": "https://en.wikipedia.org/wiki/Tim_Cook",
"license": "Wikipedia text CC BY-SA 4.0; Wikidata facts CC0"
}Connect
Claude Code / any MCP client:
claude mcp add --transport http wikexa https://wikexa.com/mcpCursor / VS Code (mcp.json):
{
"servers": {
"wikexa": {
"type": "http",
"url": "https://wikexa.com/mcp"
}
}
}Raw JSON-RPC:
curl -s -X POST https://wikexa.com/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"lookup","arguments":{"entity":"Apple Inc."}}}'Discovery
Path | What it serves |
| MCP server metadata |
| Agent card |
| OpenAPI 3.1 spec |
| Plain-text orientation for LLMs |
| Returns 404 — no auth required |
Coverage
476,616 encyclopedia articles (top by pageviews)
10.2M Wikidata entity records
8.15M Wiktionary dictionary entries (~4,000 languages)
194,870 records from Wikiquote, Wikibooks, Wikiversity, Wikivoyage
1.9M full-text searchable with pageview-weighted ranking
Performance
Served from the Cloudflare edge. 5–12ms warm with zero storage operations.
Verify with the x-wikexa-ops response header.
Pricing
Free for individuals and open-source projects. Commercial volume plans available at wikexa.com.
Token control
article() takes sections and max_chars. Ask for the section you need
rather than the whole article. Empty fields are omitted from all responses to
minimize token usage.
Licensing
Wikipedia text is CC BY-SA 4.0 — every response carries license and
source_url. Wikidata facts are CC0. We add no restrictions on top of those
licences. Paid plans buy service capacity and support, never content rights.
Wikexa is not affiliated with the Wikimedia Foundation.
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
- Alicense-qualityCmaintenanceHosted shared knowledge base for AI agents. Store, search, and retrieve structured knowledge using semantic search. Agents contribute to a growing collective intelligence that compounds over time. No install — just a URL.MIT
- Alicense-qualityDmaintenanceVerified knowledge base for AI agents. Stop hallucinations with certified, source-backed facts. Covers Swiss law, health, finance, climate, AI/ML, and more. 8 tools, no API key needed, public and free.MIT
- AlicenseAqualityFmaintenanceStructured web extraction for AI agents. Pass any URL and a prompt, get clean JSON data back. Native MCP server with 100 free requests/month.3794MIT

VoidFeedofficial
AlicenseAqualityCmaintenanceStructured knowledge API for AI agents — fractal knowledge graphs, signal datasets, authority evidence reviews, open problems, and capability specs. Pay-per-query or subscription via Lightning, Stripe, or USDC.925MIT
Related MCP Connectors
Shared knowledge base for AI agents. Semantic search across agents, no setup required — just a URL.
Curated knowledge API for AI agents - skill packs, semantic search, validated patterns.
Your company's brain for AI agents. Cited, permission-aware knowledge across every system.
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/nlapi/wikexa'
If you have feedback or need assistance with the MCP directory API, please join our Discord server