mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-12 23:01:41 +00:00
fix(mcp): point Atlassian registry entry to the authv2 MCP endpoint
This commit is contained in:
parent
effc40132a
commit
24e16de77a
2 changed files with 9 additions and 1 deletions
|
|
@ -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": []
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue