Skip to main content
ClaudeWave

MCP Server for evipedia.ai

MCP ServersOfficial Registry1 stars0 forksTypeScriptMITUpdated today
ClaudeWave Trust Score
82/100
Trusted
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Documented (README)
Last scanned: 8/26/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/forever-healthy/evipedia-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "evipedia-mcp": {
      "command": "node",
      "args": ["/path/to/evipedia-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/forever-healthy/evipedia-mcp and follow its README for install instructions.
Use cases

MCP Servers overview

![Version](https://img.shields.io/badge/Version-0.1.29-green.svg)
[![Forever Healthy](https://img.shields.io/badge/(c)_2026-Forever_Healthy-573D7D.svg)](https://forever-healthy.org)
[![npm](https://img.shields.io/badge/npm-evipedia--mcp-cb3837.svg)](https://www.npmjs.com/package/evipedia-mcp)
[![MCP Registry](https://img.shields.io/badge/MCP_Registry-io.github.forever--healthy%2Fevipedia--mcp-1f6feb.svg)](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.forever-healthy/evipedia-mcp)
![evipedia.ai](./docs/evipedia-header.png)

# Evipedia MCP Server

A small [Model Context Protocol](https://modelcontextprotocol.io) server that lets AI agents query [evipedia.ai](https://evipedia.ai) — our continuously-updated encyclopedia of evidence reviews on health & longevity interventions — and suggest new interventions for review.


## Tools

* `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](https://evipedia.ai/suggest))
* `get_version()` → the running server's package name and version


## Install (local or remote)

The server is published to npm as **[`evipedia-mcp`](https://www.npmjs.com/package/evipedia-mcp)** and runs over stdio via `npx` — no global install needed. It's also listed in the [official MCP Registry](https://registry.modelcontextprotocol.io/v0/servers?search=io.github.forever-healthy/evipedia-mcp) 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)

```json
{
  "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/`](https://mcp.evipedia.ai/) that can be used over HTTP.

Client config: Remote MCP via HTTP

```json
{
  "mcpServers": {
    "evipedia": {
      "type": "http",
      "url": "https://mcp.evipedia.ai/mcp"
    }
  }
}
```


- **Claude Code** — add to your project's `.mcp.json` (or run `claude mcp add`).
- **Claude Desktop** — add to `claude_desktop_config.json`.
- **Cursor** — add to the MCP settings.


## Try it

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.


## Architecture

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.

* Fetches live from `https://evipedia.ai` with a small in-process cache (both JSON indexes are tiny)
* Mostly read-only, no auth required. The one write path is `suggest_review`, which POSTs to evipedia's public suggestion form (Formspree)


### Public API Surface

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 |

What people ask about evipedia-mcp

What is forever-healthy/evipedia-mcp?

+

forever-healthy/evipedia-mcp is mcp servers for the Claude AI ecosystem. MCP Server for evipedia.ai It has 1 GitHub stars and its last recorded update is dated 2026-08-25.

How do I install evipedia-mcp?

+

You can install evipedia-mcp by cloning the repository (https://github.com/forever-healthy/evipedia-mcp) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.

Is forever-healthy/evipedia-mcp safe to use?

+

Our security agent has analyzed forever-healthy/evipedia-mcp and assigned a Trust Score of 82/100 (tier: Trusted). See the full breakdown of passed checks and flags on this page.

Who maintains forever-healthy/evipedia-mcp?

+

forever-healthy/evipedia-mcp is maintained by forever-healthy. The last recorded GitHub activity is dated 2026-08-25, with 0 open issues.

Are there alternatives to evipedia-mcp?

+

Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.

Deploy evipedia-mcp to your cloud

Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.

Maintain this repo? Add a badge to your README

Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.

Featured on ClaudeWave: forever-healthy/evipedia-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/forever-healthy-evipedia-mcp)](https://claudewave.com/repo/forever-healthy-evipedia-mcp)
<a href="https://claudewave.com/repo/forever-healthy-evipedia-mcp"><img src="https://claudewave.com/api/badge/forever-healthy-evipedia-mcp" alt="Featured on ClaudeWave: forever-healthy/evipedia-mcp" width="320" height="64" /></a>

More MCP Servers

evipedia-mcp alternatives