Command Palette

Search for a command to run...

UnylyUnyly
Browse all

FEP (Fediverse Enhancement Proposals)

FreeNot checked

Access and search Fediverse Enhancement Proposals standardization documents

GitHubEmbed

About

Access and search Fediverse Enhancement Proposals standardization documents

README

FEP MCP

JSR GitHub Actions

An MCP (Model Context Protocol) server that provides access to Fediverse Enhancement Proposals (FEPs). This server keeps a shared local cache of the FEP repository from Codeberg, refreshes it on startup, and exposes tools and resources for AI assistants to read and search FEP documents.

Why?

Codeberg has anti-AI protections that prevent AI tools like Claude or Gemini from directly fetching FEP documents. This MCP server works around this limitation by cloning the repository locally and serving the documents through the MCP protocol.

Installation

Using JSR (recommended)

You can run the server directly from JSR:

deno run \
  --allow-ffi \
  --allow-read \
  --allow-write \
  --allow-net \
  --allow-env \
  --allow-sys \
  jsr:@hongminhee/fep-mcp

Using a prebuilt binary

Download the prebuilt binary for your platform from the releases page.

Building from source

git clone https://github.com/dahlia/fep-mcp.git
cd fep-mcp
deno task compile

Shared repository cache

The server stores the cloned FEP repository in a shared cache directory on the local machine and reuses it across restarts. On startup it tries to refresh the cache from Codeberg; if the refresh fails but an existing cache is available, the server starts with the stale local copy instead.

Set FEP_MCP_REPOSITORY_DIR to override the cache location.

Usage with Claude Desktop

Add the following to your Claude Desktop configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "fep": {
      "command": "deno",
      "args": [
        "run",
        "--allow-ffi",
        "--allow-read",
        "--allow-write",
        "--allow-net",
        "--allow-env",
        "--allow-sys",
        "jsr:@hongminhee/fep-mcp"
      ]
    }
  }
}

Usage with Claude Code

Add the server to your Claude Code MCP settings:

claude mcp add fep -- \
  deno run \
  --allow-ffi \
  --allow-read \
  --allow-write \
  --allow-net \
  --allow-env \
  --allow-sys \
  jsr:@hongminhee/fep-mcp

Available tools

list_feps

Lists all FEPs with their metadata. Optionally filter by status (DRAFT, FINAL, or WITHDRAWN).

get_fep

Retrieves a specific FEP document by its 4-character hex slug (e.g., a4ed).

search_feps

Searches FEPs by title, author, or content.

refresh_repository

Pulls the latest FEP documents from the repository.

Available resources

  • fep://index — The complete FEP index in JSON format
  • fep://{slug} — Individual FEP documents by slug

License

Copyright (c) 2025 Hong Minhee and contributors.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

See the LICENSE file for details.

from github.com/dahlia/fep-mcp

Installing FEP (Fediverse Enhancement Proposals)

This server has no published package — it is built from source. Open the repository and follow its README.

▸ github.com/dahlia/fep-mcp

FAQ

Is FEP (Fediverse Enhancement Proposals) MCP free?

Yes, FEP (Fediverse Enhancement Proposals) MCP is free — one-click install via Unyly at no cost.

Does FEP (Fediverse Enhancement Proposals) need an API key?

No, FEP (Fediverse Enhancement Proposals) runs without API keys or environment variables.

Is FEP (Fediverse Enhancement Proposals) hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

How do I install FEP (Fediverse Enhancement Proposals) in Claude Desktop, Claude Code or Cursor?

Open FEP (Fediverse Enhancement Proposals) on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare FEP (Fediverse Enhancement Proposals) with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs