From 6519727c5dc9211599141732ca88f6222cfa2643 Mon Sep 17 00:00:00 2001 From: Simon Strandgaard Date: Sun, 1 Mar 2026 03:35:31 +0100 Subject: [PATCH 1/3] Smithery status --- ...70-mcp-interface-evaluation-and-roadmap.md | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/docs/proposals/70-mcp-interface-evaluation-and-roadmap.md b/docs/proposals/70-mcp-interface-evaluation-and-roadmap.md index 41a834d6..fc1b409a 100644 --- a/docs/proposals/70-mcp-interface-evaluation-and-roadmap.md +++ b/docs/proposals/70-mcp-interface-evaluation-and-roadmap.md @@ -187,8 +187,8 @@ Add an explicit check at server startup that required secrets (`PLANEXE_API_KEY_ ### 6.1 MCP registries - **Glama** — already listed -- **mcp.so** — submit `server.json`; high traffic from Claude desktop users - **Smithery** — another fast-growing directory; supports one-click install +- **mcp.so** — submit `server.json`; high traffic from Claude desktop users - **awesome-mcp-servers** (GitHub) — submit a PR; maintainers merge quickly - **OpenTools** — focus on enterprise MCP discovery @@ -213,6 +213,26 @@ Outstanding issues: - Add a /glama.json to repo to claim ownership of planexe. No luck. - Customize profile text, categories, favicon. +#### 6.1.2 Smithery + +https://smithery.ai/servers/planexeorg/planexe + +Smithery has problems updating the entry automatically. When I have make mcp interface changes, then I'm not seeing them show up in Smithery's UI. +When I make changes to the MCP interface. Then I have to go to the `Releases` page, and go through the `Publish` flow. +https://smithery.ai/servers/planexeorg/planexe/releases +That reloads the entry. +It may be possible to force reload via CLI. I have not investigated this. +https://smithery.ai/docs/build/publish#cli-advanced + +Smithery has no filtering. No sort by date or by name. + +Smithery's one-click install is neat. + +Outstanding issues: + +- Automation. Whenever I make changes to MCP, I will have to manually update the PlanExe profile on Smithery. +- improve on Smithery’s Quality Score. Currently it’s 81 of 100. + ### 6.2 Content - **Blog post: "From prompt to project plan in 60 seconds"** — a short walkthrough showing MCP Inspector → `plan_create` → `plan_status` → download. Publish on dev.to, Hacker News (Show HN), and the PlanExe GitHub Discussions. From 1c0a808fc4c14fa8abd7d421a2950ce7d3193f3d Mon Sep 17 00:00:00 2001 From: Simon Strandgaard Date: Sun, 1 Mar 2026 13:36:54 +0100 Subject: [PATCH 2/3] Allow prompts/get without authentication Glama.ai returns an auth error when fetching prompt content because prompts/get was not in the public methods whitelist. Add it so prompt retrieval works without an API key, matching prompts/list behavior. Co-Authored-By: Claude Opus 4.6 --- mcp_cloud/http_server.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mcp_cloud/http_server.py b/mcp_cloud/http_server.py index 5b1330fa..6ade6756 100644 --- a/mcp_cloud/http_server.py +++ b/mcp_cloud/http_server.py @@ -167,6 +167,7 @@ def _split_csv_env(value: Optional[str]) -> list[str]: "notifications/initialized", "tools/list", "prompts/list", + "prompts/get", "resources/list", "resources/templates/list", "ping", From 6445e50f7334a992d88003a379852e4c490d5b7b Mon Sep 17 00:00:00 2001 From: Simon Strandgaard Date: Sun, 1 Mar 2026 13:42:16 +0100 Subject: [PATCH 3/3] typos --- docs/proposals/70-mcp-interface-evaluation-and-roadmap.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/proposals/70-mcp-interface-evaluation-and-roadmap.md b/docs/proposals/70-mcp-interface-evaluation-and-roadmap.md index fc1b409a..20a025b5 100644 --- a/docs/proposals/70-mcp-interface-evaluation-and-roadmap.md +++ b/docs/proposals/70-mcp-interface-evaluation-and-roadmap.md @@ -217,10 +217,10 @@ Outstanding issues: https://smithery.ai/servers/planexeorg/planexe -Smithery has problems updating the entry automatically. When I have make mcp interface changes, then I'm not seeing them show up in Smithery's UI. -When I make changes to the MCP interface. Then I have to go to the `Releases` page, and go through the `Publish` flow. +Smithery has problems updating the entry automatically. When I have made mcp interface changes, then I'm not seeing them show up in Smithery's UI. +Syncing is something I have to do manually, by going to the `Releases` page, and go through the `Publish` flow. https://smithery.ai/servers/planexeorg/planexe/releases -That reloads the entry. +That reloads the PlanExe data entry, by pulling it from the mcp.planexe.org/mcp, IMO something that should happen automatic. It may be possible to force reload via CLI. I have not investigated this. https://smithery.ai/docs/build/publish#cli-advanced