fix(mcp): point Atlassian registry entry to the authv2 MCP endpoint

This commit is contained in:
Tin Chi Lo 2026-06-15 16:49:04 -07:00
parent effc40132a
commit 24e16de77a
2 changed files with 9 additions and 1 deletions

View file

@ -34,7 +34,7 @@
"category": "Developer Tools",
"registry_url": "https://registry.modelcontextprotocol.io/servers/com.atlassian%2Fatlassian-mcp-server",
"transport": "http",
"url": "https://mcp.atlassian.com/v1/mcp",
"url": "https://mcp.atlassian.com/v1/mcp/authv2",
"env_vars": []
},
{

View file

@ -105,6 +105,14 @@ class TestMCPRegistryFile:
assert "command" not in slack
assert "args" not in slack
def test_atlassian_uses_authv2_endpoint(self, registry_path):
"""Atlassian's MCP server should default to the streamable HTTP authv2 endpoint."""
with open(registry_path, "r") as f:
data = json.load(f)
atlassian = next(s for s in data["servers"] if s["name"] == "atlassian")
assert atlassian["transport"] == "http"
assert atlassian["url"] == "https://mcp.atlassian.com/v1/mcp/authv2"
def test_well_known_servers_present(self, registry_path):
"""Ensure key well-known MCPs are in the registry."""
with open(registry_path, "r") as f: