Adding a server to the MCP store
The MCP store catalog is code: one entry in products/mcp_store/backend/catalog.py per server.
On deploy, sync_mcp_server_templates upserts entries into MCPServerTemplate rows in every environment — there are no data migrations, no icon assets, and no manual admin steps for most servers.
Adding a server is a small PR to that file.
Read first
products/mcp_store/README.md — the catalog pipeline, sync semantics, and operator runbook
products/mcp_store/backend/catalog.py — existing entries; match their tone and shape
products/mcp_store/backend/probe.py — what the probe verifies and what passed_activation_gate means
Workflow
Find the vendor's remote MCP endpoint.
Check the vendor's docs (search " MCP server"); most publish a hosted endpoint like https://mcp.<vendor>.com/mcp.
Only hosted (remote) MCP servers belong in the catalog — local/stdio servers do not.
Cross-check public MCP registries if the docs are unclear.
Probe it.
DEBUG=1 python manage.py probe_mcp_server https://mcp.example.com/mcp
The JSON verdict tells you everything the entry needs:
speaks_mcp: false → the probe could not verify MCP. Stop and re-research — with one exception: reachable: true plus the error "Initialize was rejected and no OAuth metadata was discovered" is the auth-walled API-key case (last bullet below).
auth_flavor: "oauth_dcr" with passed_activation_gate: true → OAuth with Dynamic Client Registration. The entry is auth_type="oauth" and will activate automatically on merge.
auth_flavor: "oauth_shared" → OAuth without DCR. The entry is auth_type="oauth" but normally ships inactive; an operator must register an OAuth app with the vendor and paste credentials in Django admin (see the operator checklist below — include it in your PR description). If PostHog already provisions that exact OAuth app through an instance credential source, declare the reviewed source instead; catalog sync verifies and activates it without copying secrets.
auth_flavor: "open" → the handshake completed without credentials. auth_type="api_key"; activates automatically on merge.
auth_flavor: "api_key_or_unknown" with reachable: true → an auth-walled API-key server; a bare 401/403 gives the probe no MCP evidence. auth_type="api_key", but the entry ships inactive — verify it with a real install (Gate B) before adding it, and note in the PR that an operator flips it active in Django admin per environment (users bring their own key; nothing to provision).
Author the entry in catalog.py, alphabetically by name:
name — the vendor's own casing ("PagerDuty", not "Pagerduty").
description — one sentence, sentence case, verb-first, matching the existing entries ("Manage Linear issues, projects, and team workflows."). No marketing copy.
category — the closest of business / data / design / dev / infra / productivity.
icon_domain — the vendor's primary brand domain (linear.app, not mcp.linear.app). Verify logo.dev has it: GET /api/projects/@current/hog_functions/icons/?query=<vendor> from a dev session, or check https://img.logo.dev/<domain> renders a real logo.
docs_url — the vendor's MCP docs page when they have one.
Verify end-to-end when you can (Gate B).
The probe covers everything up to the OAuth consent screen.
If you have an account with the vendor, complete one real install in local dev: run the stack, install the server from the store UI, finish the OAuth flow (or paste an API key), and confirm the tool list populates.
Record the verification tier in the PR description:
- Tier 1: probe passed + real install verified (tools listed).
- Tier 2: probe passed only (no vendor account available).
Run the checks.
hogli test products/mcp_store/backend/test/test_catalog_sync.py
test_catalog_entries_are_valid catches malformed entries (bad category, duplicate URL, unnormalized icon_domain) before they hit production.
Open the PR — one server per PR, on an mcp-store/-prefixed branch (e.g. mcp-store/add-pagerduty), with a feat(mcp-store) title: feat(mcp-store): add <name> to the MCP server catalog.
State the probe verdict and verification tier in the description.
For oauth_shared servers without an existing instance credential source, include the operator checklist so activation isn't forgotten.
Operator checklist for oauth_shared servers (paste into the PR)
This server does not support Dynamic Client Registration, so it ships inactive. To activate (per environment, US and EU):
- [ ] Register an OAuth app in the vendor's developer console
- [ ] Redirect URI: `https://us.posthog.com/api/mcp_store/oauth_redirect/` (and the EU equivalent)
- [ ] Paste client ID + secret into Django admin → MCP server templates → <name>
- [ ] OAuth metadata was auto-discovered by the sync; run the "Discover metadata" admin action only if it's empty
- [ ] Tick "is active"
What not to do
- Don't add entries with unprobed URLs — a dead catalog entry is user-visible breakage.
- Don't edit
is_active, oauth_credentials, or oauth_metadata expectations into the catalog — those are operational state owned by the row, not by code.
- Don't add an instance credential source for a newly registered vendor app. Sources are only for an existing client already provisioned across every target environment, with exact trusted issuer, authorization, and token endpoints enforced before any secret is used.
- Don't add icon assets or
icon_key values — icons resolve from icon_domain via logo.dev at render time.
- Don't batch unrelated servers into one PR unless explicitly doing a scaffold sweep; per-server PRs keep review and reverts clean.
1---2name: adding-mcp-store-servers3description: Add a third-party MCP server (Linear, Notion, GitHub, ...) to the PostHog MCP store catalog. Use when asked to "add X to the MCP store", expand the MCP server marketplace, or fix a broken catalog entry. Covers finding the vendor's remote MCP endpoint, probing it (handshake, OAuth discovery, DCR), authoring the catalog entry in products/mcp_store/backend/catalog.py, verification tiers, and the operator handoff for servers without Dynamic Client Registration.4---5
6# Adding a server to the MCP store
7
8The MCP store catalog is code: one entry in `products/mcp_store/backend/catalog.py` per server.
9On deploy, `sync_mcp_server_templates` upserts entries into `MCPServerTemplate` rows in every environment — there are no data migrations, no icon assets, and no manual admin steps for most servers.
10Adding a server is a small PR to that file.
11
12## Read first
13
14- `products/mcp_store/README.md` — the catalog pipeline, sync semantics, and operator runbook
15- `products/mcp_store/backend/catalog.py` — existing entries; match their tone and shape
16- `products/mcp_store/backend/probe.py` — what the probe verifies and what `passed_activation_gate` means
17
18## Workflow
19
201. **Find the vendor's remote MCP endpoint.**
21 Check the vendor's docs (search "<vendor> MCP server"); most publish a hosted endpoint like `https://mcp.<vendor>.com/mcp`.
22 Only hosted (remote) MCP servers belong in the catalog — local/stdio servers do not.
23 Cross-check public MCP registries if the docs are unclear.
24
252. **Probe it.**
26
27 ```sh
28 DEBUG=1 python manage.py probe_mcp_server https://mcp.example.com/mcp
29 ```
30
31 The JSON verdict tells you everything the entry needs:
32 - `speaks_mcp: false` → the probe could not verify MCP. Stop and re-research — with one exception: `reachable: true` plus the error "Initialize was rejected and no OAuth metadata was discovered" is the auth-walled API-key case (last bullet below).
33 - `auth_flavor: "oauth_dcr"` with `passed_activation_gate: true` → OAuth with Dynamic Client Registration. The entry is `auth_type="oauth"` and will **activate automatically on merge**.
34 - `auth_flavor: "oauth_shared"` → OAuth without DCR. The entry is `auth_type="oauth"` but normally ships **inactive**; an operator must register an OAuth app with the vendor and paste credentials in Django admin (see the operator checklist below — include it in your PR description). If PostHog already provisions that exact OAuth app through an instance credential source, declare the reviewed source instead; catalog sync verifies and activates it without copying secrets.
35 - `auth_flavor: "open"` → the handshake completed without credentials. `auth_type="api_key"`; activates automatically on merge.
36 - `auth_flavor: "api_key_or_unknown"` with `reachable: true` → an auth-walled API-key server; a bare 401/403 gives the probe no MCP evidence. `auth_type="api_key"`, but the entry ships **inactive** — verify it with a real install (Gate B) before adding it, and note in the PR that an operator flips it active in Django admin per environment (users bring their own key; nothing to provision).
37
383. **Author the entry** in `catalog.py`, alphabetically by name:
39 - `name` — the vendor's own casing ("PagerDuty", not "Pagerduty").
40 - `description` — one sentence, sentence case, verb-first, matching the existing entries ("Manage Linear issues, projects, and team workflows."). No marketing copy.
41 - `category` — the closest of `business` / `data` / `design` / `dev` / `infra` / `productivity`.
42 - `icon_domain` — the vendor's primary brand domain (`linear.app`, not `mcp.linear.app`). Verify logo.dev has it: `GET /api/projects/@current/hog_functions/icons/?query=<vendor>` from a dev session, or check `https://img.logo.dev/<domain>` renders a real logo.
43 - `docs_url` — the vendor's MCP docs page when they have one.
44
454. **Verify end-to-end when you can (Gate B).**
46 The probe covers everything up to the OAuth consent screen.
47 If you have an account with the vendor, complete one real install in local dev: run the stack, install the server from the store UI, finish the OAuth flow (or paste an API key), and confirm the tool list populates.
48 Record the verification tier in the PR description:
49 - **Tier 1**: probe passed + real install verified (tools listed).
50 - **Tier 2**: probe passed only (no vendor account available).
51
525. **Run the checks.**
53
54 ```sh
55 hogli test products/mcp_store/backend/test/test_catalog_sync.py
56 ```
57
58 `test_catalog_entries_are_valid` catches malformed entries (bad category, duplicate URL, unnormalized icon_domain) before they hit production.
59
606. **Open the PR** — one server per PR, on an `mcp-store/`-prefixed branch (e.g. `mcp-store/add-pagerduty`), with a `feat(mcp-store)` title: `feat(mcp-store): add <name> to the MCP server catalog`.
61 State the probe verdict and verification tier in the description.
62 For `oauth_shared` servers without an existing instance credential source, include the operator checklist so activation isn't forgotten.
63
64## Operator checklist for oauth_shared servers (paste into the PR)
65
66```md
67This server does not support Dynamic Client Registration, so it ships inactive. To activate (per environment, US and EU):
68
69- [ ] Register an OAuth app in the vendor's developer console
70- [ ] Redirect URI: `https://us.posthog.com/api/mcp_store/oauth_redirect/` (and the EU equivalent)
71- [ ] Paste client ID + secret into Django admin → MCP server templates → <name>
72- [ ] OAuth metadata was auto-discovered by the sync; run the "Discover metadata" admin action only if it's empty
73- [ ] Tick "is active"
74```
75
76## What not to do
77
78- Don't add entries with unprobed URLs — a dead catalog entry is user-visible breakage.
79- Don't edit `is_active`, `oauth_credentials`, or `oauth_metadata` expectations into the catalog — those are operational state owned by the row, not by code.
80- Don't add an instance credential source for a newly registered vendor app. Sources are only for an existing client already provisioned across every target environment, with exact trusted issuer, authorization, and token endpoints enforced before any secret is used.
81- Don't add icon assets or `icon_key` values — icons resolve from `icon_domain` via logo.dev at render time.
82- Don't batch unrelated servers into one PR unless explicitly doing a scaffold sweep; per-server PRs keep review and reverts clean.