mit-classics-mcp
An MCP server that gives LLMs direct read access to the MIT Internet Classics Archive, allowing them to list authors, list works, and fetch word-range slices of texts.
README
mit-classics-mcp
An MCP server that gives an LLM direct read access to the MIT Internet Classics Archive — 59 ancient authors (Plato, Aristotle, Marcus Aurelius, Sun Tzu, Homer, and more) and 400+ works, fetched live from the archive rather than bundled.
No API key, no rate-limited third-party wrapper — it talks to the archive directly.
Tools
| Tool | Purpose |
|---|---|
list_authors |
List all 59 authors in the archive |
list_works(author) |
List every work by an author, with the slug needed to fetch it |
get_work_text(author, work_slug, start_word, word_count) |
Fetch a word-range slice of a work's full text |
get_work_text is paginated by word count (default 3,000 words, ~10-12 pages) rather than returning entire books at once, so an LLM can pull exactly the section it needs without blowing its context window.
Why this exists
The archive is a genuinely old site — 1990s-era frameset HTML, served inside a <NOFRAMES> block. That turned out to matter more than expected: per the HTML5 spec, <noframes> content is always parsed as raw text, not markup, so no HTML parser — however permissive — can extract real <a> elements from it. This server parses the raw response directly instead of relying on a DOM parser, and is deliberately hardened against at least one malformed tag in the archive's own markup that would otherwise silently drop an author from the list.
Author display names don't always match their internal archive slug either (Marcus Aurelius → Antoninus, Sun Tzu → Tzu) — the slug is resolved from the real link on the archive's index page rather than guessed from the author string.
Running it
docker build -t mit-classics-mcp-server .
Add to your MCP client config (e.g. Claude Desktop / Claude Code):
{
"mcpServers": {
"mit-classics": {
"command": "docker",
"args": ["run", "-i", "--rm", "mit-classics-mcp-server"]
}
}
}
License
MIT
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.