Drop a skills/ and prompts/ folder, get a FastMCP
server — with a browseable catalog — in one line.
import dropmcp
dropmcp.run(skills="skills", prompts="prompts")dropmcp is the reusable, repo-agnostic engine behind several internal
skills/prompts MCP servers, extracted as a standalone library.
- Browseable skill catalog — a built-in web UI to search, filter, and preview every skill and prompt, with copy-paste install snippets for each MCP client.
- Zero-boilerplate server — point it at a
skills/andprompts/folder and get a tested FastMCP server over streamable-HTTP. - Filesystem as source of truth — skills and prompts are just markdown with YAML frontmatter; no registry to drift out of sync.
- Observability built in — per-invocation structured logs plus optional OpenTelemetry metrics and traces.
- Agent feedback loop — a
record_feedbacktool and triage UI for when agents get corrected. - Repository feedback backlog — an optional
record_repo_feedbacktool and triage UI for flaky tests, CI-only checks, setup gaps, and other repo friction. - Per-user subscriptions — optional opt-in so each user's agent sees only a curated subset of the catalog.
Skills and prompts are just markdown — anyone can write them, and there are
plenty of ways to get them in front of an agent: copy them into .cursor/skills,
ship an IDE plugin, sync a folder, paste them into context. The trouble is that
every one of those is tied to a single tool, has no central updates, no way to
scope who sees what, and no signal about what actually gets used. Spread across
many people, repos, and editors, that fragments fast — the same skill forked
five ways with no canonical copy, and skills that work in one agent but not the
next.
Serving skills over MCP solves the delivery problem generically: one server is reachable from any MCP client (Cursor, Claude Code, CI, whatever comes next), the filesystem stays the single source of truth so there's no registry to drift, and because every skill call is one request, usage is observable for free. The catch is that standing up that server is the same boilerplate every time — frontmatter parsing, tool/prompt/resource registration, a browseable catalog, telemetry, hosting.
dropmcp is that boilerplate, extracted and built around Fast MCP. Point it at a skills/ and prompts/
folder and you get a tested, observable MCP server, so you run one focused
server per audience instead of rebuilding the engine each time. Authors maintain
content, not infrastructure.
pip install dropmcpOptional OpenTelemetry export:
pip install "dropmcp[otel]"Lay out your content:
skills/
my-skill/
SKILL.md # YAML frontmatter: name, category, description
reference.md # optional supporting files -> resource links
prompts/
my-prompt/
PROMPT.md # YAML frontmatter: name, description, arguments
assets/ # optional assets -> prompt://my-prompt/assets/<file>
Then serve it over streamable-HTTP:
import dropmcp
dropmcp.run(skills="skills", prompts="prompts") # binds 127.0.0.1:8000
dropmcp.run(skills="skills", prompts="prompts", host="0.0.0.0", port=8000)dropmcp is a hosted server — it exists to share skills and prompts with
remote MCP clients, so it serves over streamable-HTTP only (no local stdio).
The catalog UI is at http://<host>:<port>/ and the MCP endpoint at /mcp.
Need to customise the server before it runs? Use the factory:
mcp = dropmcp.create_server(skills="skills", prompts="prompts")
# add your own routes / middleware ...
mcp.run(transport="streamable-http", host="0.0.0.0", port=8000)A runnable example lives in examples/.
Generate a ready-to-run project from the bundled template:
pip install copier
copier copy gh:agoda-com/dropmcp//template my-skills-mcp
cd my-skills-mcp
pip install -r requirements.txt
python server.pyThe template asks for a project name and whether to include Promptfoo eval scaffolding under tests/.
Every option can be passed as a keyword argument, set via a DROPMCP_*
environment variable, or left to its default (kwargs win, then env, then
default).
| kwarg | env | default | purpose |
|---|---|---|---|
skills |
DROPMCP_SKILLS |
skills |
skills directory |
prompts |
DROPMCP_PROMPTS |
prompts |
prompts directory |
name |
DROPMCP_NAME |
dropmcp |
server name shown to clients and OTEL service name |
website_url |
DROPMCP_WEBSITE_URL |
– | server homepage URL |
icon |
DROPMCP_ICON |
– | path to an icon (svg/png) |
instructions |
DROPMCP_INSTRUCTIONS |
auto | INSTRUCTIONS.md template |
host |
DROPMCP_HOST |
127.0.0.1 |
bind host |
port |
DROPMCP_PORT |
8000 |
bind port |
ui_enabled |
DROPMCP_UI |
true |
serve the catalog HTTP routes |
feedback_enabled |
DROPMCP_FEEDBACK |
true |
enable the record_feedback tool, feedback HTTP routes, and always-on instructions |
repo_feedback_enabled |
DROPMCP_REPO_FEEDBACK |
false |
enable the optional record_repo_feedback tool, repo feedback HTTP routes, and always-on instructions |
user_subscriptions_enabled |
DROPMCP_USER_SUBSCRIPTIONS |
false |
per-user skill/prompt opt-in over MCP and subscription HTTP API |
user_header |
DROPMCP_USER_HEADER |
X-User-Email |
HTTP header carrying the trusted caller identity |
reload |
DROPMCP_RELOAD |
false |
re-scan skills/prompts on every request |
database_url |
DROPMCP_DATABASE_URL |
sqlite:///<cwd>/dropmcp.db |
feedback database tables (SQLite file or Postgres URL) |
eval_results_project |
DROPMCP_EVAL_RESULTS_PROJECT |
– | GitLab project path for E2E eval results (enables /api/telemetry when a store is available) |
eval_results_commit_sha |
DROPMCP_EVAL_RESULTS_COMMIT_SHA |
COMMIT_SHA file |
deployed commit to filter eval results |
catalog_defaults |
DROPMCP_CATALOG_DEFAULTS |
bundled SVGs | category thumbnail fallbacks for the catalog grid |
If an INSTRUCTIONS.md sits next to your content folders it is picked up
automatically; otherwise a generic default ships with the package. The
{{INSTRUCTION_SUMMARIES}} and {{PROMPT_SUMMARIES}} placeholders are
filled from each item's instruction_summary frontmatter.
dropmcp serves over streamable-HTTP for multi-client hosted deployments. Run
your server.py:
DROPMCP_HOST=0.0.0.0 DROPMCP_PORT=8000 python server.pyThe catalog UI is available at http://localhost:8000/, the health check
endpoint at http://localhost:8000/health, and the MCP endpoint at
http://localhost:8000/mcp. Point your remote MCP clients there.
A minimal Dockerfile for a hosted deployment:
FROM python:3.12-slim
WORKDIR /app
RUN pip install dropmcp
COPY skills/ skills/
COPY prompts/ prompts/
COPY INSTRUCTIONS.md . # optional
ENV DROPMCP_HOST=0.0.0.0
ENV DROPMCP_PORT=8000
ENV DROPMCP_NAME="My Skills MCP"
EXPOSE 8000
CMD ["python", "-m", "dropmcp"]Build and run:
docker build -t my-skills-mcp .
docker run -p 8000:8000 my-skills-mcpConnect a remote MCP client to http://<host>:8000/mcp.
All settings can be passed via environment variables and started with
python -m dropmcp — no server.py needed:
export DROPMCP_SKILLS=/data/skills
export DROPMCP_PROMPTS=/data/prompts
export DROPMCP_HOST=0.0.0.0
export DROPMCP_PORT=8000
export DROPMCP_NAME="Acme Skills"
export DROPMCP_WEBSITE_URL="https://skills.example.com"
python -m dropmcpInstall the OTEL extra and point at your collector:
pip install "dropmcp[otel]"
export OTEL_EXPORTER_OTLP_ENDPOINT="http://otel-collector:4318"
python -m dropmcpMetrics and structured logs are emitted per skill invocation, prompt render,
resource read, and MCP protocol event (initialize, tools/list). Metric
names use dotted OTel style (for example skill.invocations,
skill.invocation.duration) with delta temporality for histograms. The OTEL
service name defaults to DROPMCP_NAME; override with OTEL_SERVICE_NAME if
needed.
Telemetry preserves richer self-reported MCP metadata in structured logs,
including initialize.params.clientInfo, protocol version, capability summary,
selected request _meta keys (agent, ide, team, repo, environment,
launcher, launcher_version, trace_id), session/transport details, HTTP
fallback headers, operation names, and sanitized error context. These values are
for observability only and are not security signals.
Metric attributes are deliberately bounded: client, client_version,
client_source, transport, team, environment, operation_kind,
outcome, and error.type, plus the relevant local operation name such as
skill, prompt, or resource. Unknown values roll up to other, missing
values roll up to unknown, and request _meta values are allowlisted,
truncated, and scrubbed before logging or metric attribution. Set
DROPMCP_TELEMETRY_TEAM_BUCKETS=supply,platform,... to control which declared
team names are allowed as metric buckets.
When OTEL_EXPORTER_OTLP_ENDPOINT is unset, OpenTelemetry export is a no-op —
no extra imports, no export overhead — but structured per-invocation logs still
go to the console.
dropmcp includes a built-in feedback loop for when agents get corrected and for reusable work agents discover after invoking skills:
record_feedbackMCP tool — agents write structured feedback (no external Slack/GitLab wiring).- SQLite by default — a
dropmcp.dbfile is created next to your content folders on first run. - Postgres override — set
DROPMCP_DATABASE_URL=postgresql://user:pass@host/dbfor durable hosted storage. - Feedback UI — browse, search, filter, and triage at
/feedbackin the catalog SPA (GET/PATCH /api/feedback).
Feedback rows include feedback_type (correction by default, or agent_work),
skill_name for the skill that was in use when feedback is about a specific
skill, and optional structured details. agent_work entries can include
reusable scripts or procedural artifacts under details.artifacts; script
content is stored as JSON text and shown in an expandable UI panel.
SQLite auto-creates the feedback table and lightly adds missing skill_name,
feedback_type, and details columns for existing local databases. Postgres
deployments must ship the equivalent SyncDB migration for any missing columns:
ALTER TABLE feedback
ADD COLUMN IF NOT EXISTS skill_name text,
ADD COLUMN IF NOT EXISTS feedback_type text NOT NULL DEFAULT 'correction',
ADD COLUMN IF NOT EXISTS details text;
COMMENT ON COLUMN feedback.skill_name IS 'Skill that was invoked or active when the feedback was produced; null when feedback is not about a specific skill.';
COMMENT ON COLUMN feedback.feedback_type IS 'Feedback category: correction for user corrections or agent_work for reusable work created after invoking a skill.';
COMMENT ON COLUMN feedback.details IS 'Optional JSON-encoded supporting material for agent_work feedback, such as reusable artifacts.';Privacy guardrails: no verbatim user prompts, code, secrets, or PII. When feedback
is enabled, dropmcp injects always-on guidance into the server instructions
describing when and how agents should call record_feedback — no separate skill
to install. Disable the whole feature (tool, HTTP routes, and instructions) with
DROPMCP_FEEDBACK=false.
In containers, mount a volume over the SQLite file (or use Postgres) or feedback is lost when the pod restarts.
Set DROPMCP_REPO_FEEDBACK=true (or repo_feedback_enabled=True) to enable a
second feedback channel for repository friction. It is disabled by default.
record_repo_feedbackMCP tool — agents report repo-caused friction such as CI-only tests, flaky tests, warning noise, slow feedback loops, missing setup docs, dependency issues, and missing scripts.- Separate storage — rows are written to
repo_feedbackin the same SQLite or Postgres database configured byDROPMCP_DATABASE_URL. - Deduplication — open rows with the same normalized repo, category, and
summary are collapsed by fingerprint and
occurrence_countis incremented. Closed rows (actioned,wontfix) do not absorb new reports. - Repo feedback UI/API — browse and triage at
/repo-feedback, backed byGET /api/repo-feedback,GET /api/repo-feedback/{id}, andPATCH /api/repo-feedback/{id}.
Categories are fixed: tests_require_ci, flaky_test, build_warnings,
lint_noise, slow_feedback, local_setup, docs_gap, dependency_issue,
tooling_gap, and other. Status values are new, triaged, actioned, and
wontfix.
SQLite auto-creates the repo_feedback table and lightly backfills missing
columns for existing local databases. Hosted Postgres deployments must ship the
equivalent SyncDB migration. The core table shape is:
CREATE TABLE repo_feedback (
id text PRIMARY KEY,
created_at timestamptz NOT NULL,
last_seen_at timestamptz NOT NULL,
category text NOT NULL,
repo text NOT NULL,
summary text NOT NULL,
impact text NOT NULL,
suggested_fix text,
model text NOT NULL,
client text,
details text,
fingerprint text NOT NULL,
occurrence_count integer NOT NULL DEFAULT 1,
status text NOT NULL DEFAULT 'new',
resolution_url text
);
CREATE INDEX repo_feedback_fingerprint_idx ON repo_feedback (fingerprint);
CREATE INDEX repo_feedback_repo_status_idx ON repo_feedback (repo, status);The same privacy rule applies: no secrets, PII, customer data, proprietary code snippets, or verbatim prompts. Repo feedback instructions are injected only when the feature flag is enabled.
When dropmcp is deployed behind an authentication proxy, set the trusted caller
identity header with DROPMCP_USER_HEADER or the user_header kwarg. The default
header is X-User-Email.
The catalog HTTP API exposes that identity at GET /api/me:
{
"email": "user@example.com",
"authenticated": true
}The catalog footer shows the signed-in identity when the header is present and stays unchanged for anonymous requests.
When DROPMCP_USER_SUBSCRIPTIONS=true, users can opt in to individual skills
and prompts so their agent only sees a curated subset over MCP. The catalog UI
still lists the full catalog; subscription checkboxes appear when the request
includes the configured identity header (default X-User-Email, set upstream by
your auth mesh).
- Flag off — unchanged behaviour; everything is published to every caller.
- Flag on, no identity header — MCP exposes everything; UI controls are disabled.
- Flag on, identity present, first sighting — user is logged in
user_seen, automatically subscribed to every catalog group, and directly subscribed to any ungrouped catalog items (MCP and HTTP). They can still opt out of individual items or whole groups afterwards. - HTTP API —
GET/POST /api/subscriptions,DELETE /api/subscriptions/{type}/{name}, group routesPOST/DELETE /api/subscriptions/group/{group}, andPOST /api/subscriptions/groupsto re-subscribe every catalog group. groupfrontmatter — optional string onSKILL.md/PROMPT.md; surfaced in/catalogJSON and the catalog Group filter row. Group opt-ins are stored inuser_group_subscriptionso new skills added to a followed group are included automatically; users can still opt out of individual items within a group viauser_subscription_exclusion.- SQLite auto-creates
user_subscription,user_group_subscription,user_subscription_exclusion,user_seen, anduser_subscription_onboardinglocally; Postgres consumers must ship a SyncDB migration (same caveat asfeedback).
MCP clients cache tools/list / prompts/list — subscription changes take
effect after the client re-lists (typically on reconnect).
The catalog detail page includes an E2E Test Results panel (ported from skills-mcp) showing per-skill Promptfoo eval scores from your CI pipeline.
Eval results are pluggable — dropmcp ships the UI and HTTP routes, but the data source is optional so the library stays deployment-agnostic:
-
Pass an
eval_results_storetocreate_server()(any object implementingget_results_for_skill/get_all_latest_results), or -
Set
DROPMCP_EVAL_RESULTS_PROJECTand install the StarRocks extra:pip install "dropmcp[starrocks]" export DROPMCP_EVAL_RESULTS_PROJECT="full-stack/agents/skills-mcp" export DROPMCP_EVAL_RESULTS_COMMIT_SHA="$(cat COMMIT_SHA)"
When no store is configured the panel renders an empty state; routes are not registered. This keeps StarRocks / Fleet JWT coupling out of the base package.
---
name: my-skill
category: my-category
group: my-group
description: One-line description shown to the LLM as the tool description.
instruction_summary: Short phrase for the server-level INSTRUCTIONS.md bullet.
---
Full skill body here — this is what the LLM receives when it calls the tool.---
name: my-prompt
description: Short description shown in the catalog.
instruction_summary: Short phrase for INSTRUCTIONS.md.
arguments:
- name: who
description: The person to greet.
required: true
- name: tone
description: Greeting tone (optional).
required: false
---
Write a {{tone}} greeting addressed to {{who}}.Validate your content before starting the server with the bundled checker:
python -c "import sys; from dropmcp.validate import run_validation; sys.exit(run_validation('skills', 'prompts'))"Releases are cut by pushing a v* git tag. The CI workflow
does the rest: on a tag it builds the catalog UI, builds the wheel + sdist,
publishes to PyPI via trusted publishing
(no API token needed), and creates a GitHub Release with auto-generated notes.
To ship a new version:
-
Bump the version in both
pyproject.toml(version) andsrc/dropmcp/__init__.py(__version__) — they must match, and the tag must match too. Use semver. -
Land the bump on
mainvia a merged PR (CI runs tests + the UI build on the PR). -
Tag the merge commit and push the tag:
git checkout main && git pull git tag v0.2.0 git push origin v0.2.0 -
Watch the
publish-pypijob in Actions. When it's green, the new version is live on PyPI and a GitHub Release exists for the tag.
The tag must start with v (e.g. v0.2.0) — that prefix is what gates the
publish job. Pushing to main without a tag only runs tests and builds the
wheel artifact; it never publishes.
Apache-2.0.