Add Notion MCP and switch Linear to OAuth

- Added Notion MCP server with OAuth auth at mcp.notion.com
- Changed Linear from API key auth to OAuth (using /sse endpoint)
- Both now use hosted OAuth flows instead of requiring API keys
This commit is contained in:
Peter Steinberger 2025-11-25 16:02:21 +01:00
parent 1254f79e6e
commit 68ac6d2a78

View File

@ -32,10 +32,13 @@
},
"linear": {
"description": "Hosted Linear MCP; exposes issue search, create, and workflow tooling.",
"baseUrl": "https://mcp.linear.app/mcp",
"headers": {
"Authorization": "Bearer ${LINEAR_API_KEY}"
}
"baseUrl": "https://mcp.linear.app/sse",
"auth": "oauth"
},
"notion": {
"description": "Notion MCP; search, read, create, and update Notion pages and databases.",
"baseUrl": "https://mcp.notion.com/mcp",
"auth": "oauth"
},
"next-devtools": {
"description": "Next.js dev server introspection (project metadata, logs, page insights).",