mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-09-09 02:02:03 -03:00
The Asana V1 SSE server (https://mcp.asana.com/sse) is deprecated and shuts down on 2026-08-05, and Asana V2 is streamable HTTP with manual OAuth — not SSE with automatic (DCR) OAuth. Replace the Asana SSE examples in the mcp-integration skill with neutral placeholders so the tutorial no longer teaches a dead endpoint or implies Asana is a zero-config SSE/OAuth server. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
16 lines
337 B
JSON
16 lines
337 B
JSON
{
|
|
"_comment": "Example SSE MCP server configuration for hosted cloud services",
|
|
"github": {
|
|
"type": "sse",
|
|
"url": "https://mcp.github.com/sse"
|
|
},
|
|
"custom-service": {
|
|
"type": "sse",
|
|
"url": "https://mcp.example.com/sse",
|
|
"headers": {
|
|
"X-API-Version": "v1",
|
|
"X-Client-ID": "${CLIENT_ID}"
|
|
}
|
|
}
|
|
}
|