mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
fix(mcp): default Linear registry entry to OAuth
This commit is contained in:
parent
24e16de77a
commit
3818562df8
2 changed files with 2 additions and 0 deletions
|
|
@ -46,6 +46,7 @@
|
|||
"registry_url": "https://registry.modelcontextprotocol.io/servers/app.linear%2Flinear",
|
||||
"transport": "http",
|
||||
"url": "https://mcp.linear.app/mcp",
|
||||
"auth_type": "oauth2",
|
||||
"env_vars": []
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -92,6 +92,7 @@ class TestMCPRegistryFile:
|
|||
linear = next(s for s in data["servers"] if s["name"] == "linear")
|
||||
assert linear["transport"] == "http"
|
||||
assert linear["url"] == "https://mcp.linear.app/mcp"
|
||||
assert linear["auth_type"] == "oauth2"
|
||||
assert "/sse" not in linear["url"]
|
||||
|
||||
def test_slack_defaults_to_streamable_http_oauth(self, registry_path):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue