
MCP Server for evipedia.ai
MCP Server for evipedia.ai
A small Model Context Protocol server that lets AI agents query evipedia.ai — our continuously-updated encyclopedia of evidence reviews on health & longevity interventions — and suggest new interventions for review.
search_reviews(query) → matching reviews (name/synonym/keyword/category), each with its URL and conclusion
list_reviews() → the full catalogue as {topic, slug} pairs (canonical topic + the slug you pass to get_review/get_conclusion)
list_updates(days?) → the change feed, newest first: {title, slug, status, date} per recently published (new) or revised (updated) review. With no arguments it returns the last 7 days, capped at 100 entries; pass days for a wider window (e.g. days: 30)
get_conclusion(slug|url) → just the review's plain-text conclusion
get_review(slug|url) → the full review as raw Markdown
get_metadata(slug|url) → structured medical metadata as JSON — review dates (datePublished/dateModified/lastReviewed, a freshness signal not in the Markdown), the typed about entity with alternate names, and an ordered citation list with PubMed PMIDs
The read tools accept either a bare slug (e.g. rapamycin) or a full evipedia.ai URL (e.g. https://evipedia.ai/rapamycin) — the URL's last path segment is the slug, so a search result's URL can be passed straight through.
suggest_review(intervention, goal?, references?, email?) → submit a new review for an intervention to evipedia's public suggestion form (the same one at evipedia.ai/suggest)
get_version() → the running server's package name and version
The server is published to npm as evipedia-mcp and runs over stdio via npx — no global install needed. It's also listed in the official MCP Registry as io.github.forever-healthy/evipedia-mcp, so MCP-aware clients can discover and install it automatically.
Client config: Local MCP (Requires Node.js ≥ 18)
{
"mcpServers": {
"evipedia": {
"command": "npx",
"args": ["-y", "evipedia-mcp"]
}
}
}For environments where a local install is not possible or desired, we also provide a hosted MCP server at https://mcp.evipedia.ai/ that can be used over HTTP.
Client config: Remote MCP via HTTP
{
"mcpServers": {
"evipedia": {
"type": "http",
"url": "https://mcp.evipedia.ai/mcp"
}
}
}.mcp.json (or run claude mcp add).claude_desktop_config.json.You can use the bundled /demo skill to smoke-test the respective connection.
It walks through the read tools (get_version, search_reviews, list_reviews, list_updates, get_review, get_conclusion, get_metadata) against live evipedia.ai data.
The server is a thin client that only uses evipedia.ai's public endpoints. It does not depend on the evipedia content repo — the public surfaces are the API by design.
https://evipedia.ai with a small in-process cache (both JSON indexes are tiny)suggest_review, which POSTs to evipedia's public suggestion form (Formspree)Base URL: https://evipedia.ai
| Endpoint | Description |
|---|---|
GET /reviews.json | Full catalogue: canonical_name, alternate_names[], permalink, permalink_md, permalink_meta, category, creation_date, dateModified, lastReviewed, er_conclusion |
GET /search.json | Search index: short_topic, alternate_names, ep_keywords, ep_category, url |
GET /updates.json | Change feed, newest first: title, permalink, status (new/updated), date |
GET /{permalink}.md | Complete review as raw Markdown (frontmatter + full body) |
GET /{permalink}.meta.json | Flattened medical metadata: slug, topic, url, datePublished/dateModified/lastReviewed, about (type/name/alternateName), ordered citation[] (name, url, pmid?) |
GET /llms.txt | Agent/human signpost — includes the stable section anchor list |
GET /sitemap.xml | Canonical review URLs |
GET /feed.xml | RSS feed of latest updates |
Pick your client and paste the snippet. Each one is the same server, written the way that client expects it.
claude mcp add evipedia -- npx -y evipedia-mcp{
"mcpServers": {
"evipedia": {
"args": [
"-y",
"evipedia-mcp"
],
"command": "npx"
}
}
}code --add-mcp '{"name":"evipedia","args":["-y","evipedia-mcp"],"command":"npx"}'[mcp_servers.evipedia]
command = "npx"
args = ["-y", "evipedia-mcp"]Runs locally on your device. Your client starts the server itself, so nothing has to be hosted.
Paste this prompt into your agent. It reads this page and does the setup for you.
Read https://aiagentslisting.com/mcp/evipedia-mcp-server to learn what the "Evipedia MCP Server" MCP server does and how to install it. Add it to my coding agent's MCP configuration as documented on that page, then confirm the server connects and list the tools it exposes.Agents can also browse this directory over MCP at https://aiagentslisting.com/api/mcp
This server runs locally, so we can't read its tool list over the web yet.
Maintain this server? Claiming proves you own the listing and earns the last 4 points.
Claim this listingPaste this line near the top of your repository's README. The badge always renders the current score.
[](https://aiagentslisting.com/mcp/evipedia-mcp-server)Nothing comparable is listed yet.
v0.1.30Release notesv0.1.29Release notesv0.1.28Release notesv0.1.26Release notesv0.1.23Release notesv0.1.22Release notesv0.1.21Release notesv0.1.20Release notesv0.1.18Release notesv0.1.15Release notesv0.1.14Release notesv0.1.12Release notesv0.1.10Release notesv0.1.9Release notesv0.1.4Release notesv0.1.1Release notesv0.1.0Release notesConnect to the AI Agents Listing MCP server at https://aiagentslisting.com/api/mcp using the HTTP transport and complete the sign-in when it asks. Then call the submit_review tool for the listing "evipedia-mcp-server" with a rating from 1 to 5 and a short note on what worked and what did not.No reviews yet
Be the first to share your experience with this tool.
One email a week. New agents, MCP servers and skills, and what is actually getting traction.