akamai-docs-mcp
Provides access to Akamai TechDocs for CDN, Security, DNS, and EdgeWorkers products via keyword search and full-document retrieval, enabling agents to find and read relevant technical documentation.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@akamai-docs-mcpsearch Akamai docs for how to activate a security configuration version"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
akamai-docs-mcp
A local MCP server over Akamai TechDocs, scoped to CDN, Security, DNS, and
EdgeWorkers (Akamai Cloud is intentionally excluded — use the official
akamai-cloud-mcp for that).
Docs are pulled from Akamai's own llms.txt indexes (Markdown-formatted page
lists per product), so no HTML scraping is involved.
1. Install
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txtRelated MCP server: mcp-docs
2. Ingest the docs
python ingest.pyThis downloads pages for every slug listed in config.py (currently:
property-mgr, purge, adaptive-media-delivery for CDN; application-security,
network-lists for Security; edge-dns for DNS; edgeworkers for EdgeWorkers)
into docs_corpus/.
Useful flags:
python ingest.py --categories dns edgeworkers # only ingest a subset
python ingest.py --limit-per-slug 15 # quick test run, few pages per slugRe-run ingest.py any time to refresh the corpus — it overwrites existing files.
3. Test the server locally
npx @modelcontextprotocol/inspector python server.pyTry calling search_akamai_docs with something like "activate a security configuration version" or "edgeworkers subworker limits".
4. Wire it into Claude Desktop / Claude Code
Add to your MCP client config (e.g. claude_desktop_config.json):
{
"mcpServers": {
"akamai-docs": {
"command": "/absolute/path/to/.venv/bin/python",
"args": ["/absolute/path/to/akamai-docs-mcp/server.py"]
}
}
}Restart the client. You should see three tools available:
search_akamai_docs(query, category?, top_k?)get_full_doc(path)list_categories()
Adjusting scope
Edit PRODUCT_SCOPE in config.py to add/remove product slugs per category.
Find a slug by visiting any TechDocs page for that product and looking at the
"For AI agents" line at the top, which points to .../<slug>/llms.txt.
Notes
Search is BM25 keyword search (
rank_bm25) — no embeddings, no external API calls at query time. Good enough for a PoC/demo; swap in a vector store later if recall becomes an issue on paraphrased queries.This server is read-only and docs-only. For live account/API access (properties, DNS zones, security configs, EdgeWorkers deployments), pair it with Akamai's official MCP servers rather than extending this one.
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
- FlicenseNot gradedqualityCmaintenanceAn offline MCP server that provides LangChain and LangGraph documentation search via BM25 full-text search, enabling drop-in replacement for cloud-hosted docs in airgapped environments.
- AlicenseNot gradedqualityDmaintenanceMCP server for documentation search that automatically indexes web documentation sites and provides semantic, full-text, or hybrid search capabilities.11MIT
- FlicenseNot gradedqualityCmaintenanceMCP server for searching and reading ServiceNow documentation from a local clone, enabling keyword/regex queries and full doc retrieval without external APIs.
- FlicenseNot gradedqualityCmaintenanceMCP server that indexes technical documents and provides hybrid search (vector + BM25) for retrieval only, without generation.
Related MCP Connectors
MCP server for accessing curated awesome list documentation
Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.
MCP server for hex.pm and hexdocs.pm: search, inspect, compare, and audit Elixir packages
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/mejavsh/akamai-docs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server