Wikexa

Wikexa

Structured knowledge for AI agents — Wikipedia, Wikidata, Wiktionary and growing as clean JSON. 1.9M searchable. Free, no auth.

Category
Visit Server

README

Wikexa

Structured knowledge for AI agents. Wikipedia, Wikidata and Wiktionary as clean JSON instead of HTML. ~30x fewer tokens than fetching the page yourself.

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.

Tools

Tool What it gives you
lookup(entity, corpus?) Structured facts + ~200-token summary. Resolves aliases and Q-ids.
article(title, sections?, max_chars?, corpus?) Full article as structured JSON — sections as an array, infobox as key/value. No HTML or wikitext.
define(word, language?, pos?) Dictionary definitions from Wiktionary — 8.15M entries across ~4,000 languages. Grouped by language, with etymology and pronunciation.
search(query, limit?, corpus?) Ranked matches blending relevance, pageviews, and exact-title matching. Up to 50 results.
recent(topic?, hours?, limit?) 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.&sections=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=election

Example

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/mcp

Cursor / 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
/.well-known/mcp.json MCP server metadata
/.well-known/agent.json Agent card
/openapi.json OpenAPI 3.1 spec
/llms.txt Plain-text orientation for LLMs
/.well-known/oauth-authorization-server 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.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured