From a97cfa95b9bfa1dec6b5717d60bcaff82e7e0dd3 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 18 Feb 2026 19:41:46 +0800 Subject: [PATCH] feat: add Linear MCP server definition Add Linear remote MCP server with OAuth 2.1 and Dynamic Client Registration. Signed-off-by: Mohammod Al Amin Ashik --- 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 + } +}