Skip to content

Commit 09f62fb

Browse files
authored
Fix dead MCP server URLs: deepsense rehosted, paypal moved to SSE (#239)
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.
1 parent 2ba85d9 commit 09f62fb

2 files changed

Lines changed: 13 additions & 1 deletion

File tree

bio-research/.mcp.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,22 @@
88
"type": "http",
99
"url": "https://mcp.services.biorender.com/mcp"
1010
},
11+
"biorxiv": {
12+
"type": "http",
13+
"url": "https://hcls.mcp.claude.com/biorxiv/mcp"
14+
},
1115
"consensus": {
1216
"type": "http",
1317
"url": "https://mcp.consensus.app/mcp"
1418
},
19+
"c-trials": {
20+
"type": "http",
21+
"url": "https://hcls.mcp.claude.com/clinical_trials/mcp"
22+
},
23+
"chembl": {
24+
"type": "http",
25+
"url": "https://hcls.mcp.claude.com/chembl/mcp"
26+
},
1527
"synapse": {
1628
"type": "http",
1729
"url": "https://mcp.synapse.org/mcp"

small-business/.mcp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"url": "https://ai-inc.quickbooks.intuit.com/v1/mcp"
66
},
77
"paypal": {
8-
"type": "http",
8+
"type": "sse",
99
"url": "https://mcp.paypal.com/sse"
1010
},
1111
"hubspot": {

0 commit comments

Comments
 (0)