fix(mcp): default Linear registry entry to OAuth

This commit is contained in:
Tin Chi Lo 2026-06-15 16:49:52 -07:00
parent 24e16de77a
commit 3818562df8
2 changed files with 2 additions and 0 deletions

View file

@ -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": []
},
{

View file

@ -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):