Server data from the Official MCP Registry
MCP Server for evipedia.ai — evidence-based reviews of health & longevity interventions
MCP Server for evipedia.ai — evidence-based reviews of health & longevity interventions
A well-designed MCP server for querying evipedia.ai health reviews with proper architecture and reasonable security practices. The server is read-mostly, uses environment variable overrides for sensitive endpoints, and has no hardcoded secrets or dangerous patterns. Minor code quality observations around error handling and validation do not materially impact security. Supply chain analysis found 4 known vulnerabilities in dependencies (0 critical, 2 high severity). Package verification found 1 issue.
3 files analyzed · 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-forever-healthy-evipedia-mcp": {
"args": [
"-y",
"evipedia-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
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)
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_intervention(intervention, goal?, references?, email?) → submit a new 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.
Add the following to your MCP client's config:
{
"mcpServers": {
"evipedia": {
"command": "npx",
"args": ["-y", "evipedia-mcp"]
}
}
}
.mcp.json (or run claude mcp add).claude_desktop_config.json.Requires Node.js ≥ 18.
In Claude Code, run the bundled /demo skill to smoke-test the connection — it walks through the read tools (get_version, search_reviews, list_reviews, 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_intervention, 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 /{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 |
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.