Fix dead MCP server URLs: deepsense rehosted, paypal moved to SSE#239
Conversation
e21de9e to
20b7b20
Compare
|
Rebased onto current
Commit re-signed with my key during rebase — if you'd prefer to sign it yourself, force-push your own version on top and I'll re-approve. Otherwise I can approve once you take another look. |
The Check MCP URLs workflow (after the connection-failure probe fix in this PR's parent) surfaced four endpoints that fail every connection: - mcp.deepsense.ai does not resolve in DNS at all. The biorxiv, chembl, and clinical_trials servers were rehosted under hcls.mcp.claude.com (Anthropic MCP directory entries dated 2026-01-07). Paths are unchanged; only the host moved. All three return a complete MCP initialize response with no auth. - mcp.paypal.com/mcp returns 404 at every path. PayPal's live endpoint is /sse (SSE transport, not streamable HTTP) and returns 401 with WWW-Authenticate: Bearer realm="OAuth" — alive, OAuth required. Their docs claim /http for streamable transport but it returns 404 today. Type changed http -> sse to match the actual transport. Anyone with the bio-research or small-business bundle installed gets connect failures on every agent spawn until this lands.
20b7b20 to
0857d07
Compare
|
@bryan-anthropic — your reconciliation against #242/#243 was exactly right (re-add the three deepsense entries at |
bryan-anthropic
left a comment
There was a problem hiding this comment.
Approving — diff matches my rebased 20b7b20 byte-for-byte, both checks green, commit signed by your key. Thanks for the quick reciprocal push.
Follows up the four dead endpoints surfaced by
Check MCP URLsafter #236 merged (the connection-failure probe fix made them visible). Anyone with thebio-researchorsmall-businessbundle installed currently gets connect failures on every agent spawn for these servers.bio-researchbiorxivhttps://mcp.deepsense.ai/biorxiv/mcphttps://hcls.mcp.claude.com/biorxiv/mcpinitializebio-researchchemblhttps://mcp.deepsense.ai/chembl/mcphttps://hcls.mcp.claude.com/chembl/mcpinitializebio-researchc-trialshttps://mcp.deepsense.ai/clinical_trials/mcphttps://hcls.mcp.claude.com/clinical_trials/mcpinitializesmall-businesspaypalhttps://mcp.paypal.com/mcp(type: http)https://mcp.paypal.com/sse(type: sse)WWW-Authenticate: Bearer realm="OAuth"Deepsense →
hcls.mcp.claude.com.mcp.deepsense.aidoesn't resolve in DNS at all. The three health/life-sciences servers were rehosted under Anthropic's own domain (MCP directory entries dated 2026-01-07). Only the host changed; paths are identical (note:clinical_trialskeeps the underscore in the path).PayPal →
/sseandtype: sse./mcpand/httpboth return 404. PayPal's MCP quickstart documents/httpas the streamable endpoint but it doesn't respond as of today./ssereturns 401 with OAuth challenge headers and the authorization-server metadata is live, so the SSE transport works end-to-end. Type changedhttp→sseto match. If PayPal stands up the streamable endpoint later, that's a one-line follow-up.Check MCP URLsshould go fully green onmainafter this lands.