From 3c8ae38e343b3378b106fff619bb2e669948bc9e Mon Sep 17 00:00:00 2001 From: Claude Date: Wed, 11 Feb 2026 11:44:18 +0000 Subject: [PATCH] feat: add Linear MCP server definition Add Linear remote MCP server with OAuth 2.1 and DCR support. Enables searching, creating, and updating issues, projects, and comments. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.linear-mcp.json | 45 +++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 servers/com.linear-mcp.json diff --git a/servers/com.linear-mcp.json b/servers/com.linear-mcp.json new file mode 100644 index 0000000..f840aa3 --- /dev/null +++ b/servers/com.linear-mcp.json @@ -0,0 +1,45 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.linear-mcp", + "name": "Linear", + "alias": "linear", + "description": "Search, create, and update Linear issues, projects, and comments through Linear's official remote MCP server with OAuth 2.1 and Dynamic Client Registration.", + "icon": "https://avatars.githubusercontent.com/u/46686594?v=4", + "schema_version": "2.1", + "categories": ["productivity", "developer-tools"], + "tags": ["linear", "project-management", "issues", "tasks", "agile", "sprints", "cycles"], + + "transport": { + "type": "http", + "url": "https://mcp.linear.app/mcp", + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "oauth", + "instructions": "Connect via OAuth when prompted by your MCP client. Linear supports OAuth 2.1 with Dynamic Client Registration, so any MCP-compatible host can authenticate automatically." + }, + + "contributor": { + "name": "Linear", + "github": "linear", + "url": "https://linear.app" + }, + + "links": { + "repository": "https://github.com/linear/linear-mcp-server", + "homepage": "https://linear.app", + "documentation": "https://linear.app/docs/mcp" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +}