Skip to content

Commit 58da91d

Browse files
authored
Fix dead MCP server URLs in bundled plugins (apollo, outreach, datadog; remove servicenow) (anthropics#238)
- sales: apollo api.apollo.io/mcp -> mcp.apollo.io/mcp - sales: outreach mcp.outreach.io/mcp -> api.outreach.io/mcp/ - engineering: datadog mcp.datadoghq.com/mcp -> mcp.datadoghq.com/api/unstable/mcp-server/mcp - operations: remove servicenow (mcp.servicenow.com does not resolve; ServiceNow's MCP server is per-instance, no shared hosted URL exists) All replacement URLs verified live (401/405 on bare GET, i.e. endpoint exists and is auth-gated / POST-only). All replaced URLs verified dead (404 or DNS NXDOMAIN). gcal/gmail intentionally untouched; see PR body.
1 parent a0fda66 commit 58da91d

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

engineering/.mcp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
},
3535
"datadog": {
3636
"type": "http",
37-
"url": "https://mcp.datadoghq.com/mcp"
37+
"url": "https://mcp.datadoghq.com/api/unstable/mcp-server/mcp"
3838
},
3939
"google calendar": {
4040
"type": "http",

operations/.mcp.json

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@
2828
"type": "http",
2929
"url": "https://mcp.asana.com/v2/mcp"
3030
},
31-
"servicenow": {
32-
"type": "http",
33-
"url": "https://mcp.servicenow.com/mcp"
34-
},
3531
"ms365": {
3632
"type": "http",
3733
"url": "https://microsoft365.mcp.claude.com/mcp"

sales/.mcp.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@
4242
},
4343
"apollo": {
4444
"type": "http",
45-
"url": "https://api.apollo.io/mcp"
45+
"url": "https://mcp.apollo.io/mcp"
4646
},
4747
"outreach": {
4848
"type": "http",
49-
"url": "https://mcp.outreach.io/mcp"
49+
"url": "https://api.outreach.io/mcp/"
5050
},
5151
"google calendar": {
5252
"type": "http",

0 commit comments

Comments
 (0)