From bec21cd116ad108a96c6e44e676d7b0d00571910 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 14:33:29 +0000 Subject: [PATCH] Add Linear Remote MCP server definition Official Linear remote MCP server at https://mcp.linear.app/mcp. OAuth-based, no local installation required. Complements local stdio version. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.linear-mcp-http.json | 45 ++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 servers/com.linear-mcp-http.json diff --git a/servers/com.linear-mcp-http.json b/servers/com.linear-mcp-http.json new file mode 100644 index 0000000..fd56601 --- /dev/null +++ b/servers/com.linear-mcp-http.json @@ -0,0 +1,45 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.linear-mcp-http", + "name": "Linear (Remote)", + "alias": "linear-remote", + "description": "Manage Linear issues, projects, cycles, and teams through the hosted remote MCP server. No local installation required. Connects via OAuth.", + "icon": "https://avatars.githubusercontent.com/u/46686594?v=4", + "schema_version": "2.1", + "categories": ["productivity", "developer-tools"], + "tags": ["linear", "issues", "project-management", "tasks", "agile", "remote"], + + "transport": { + "type": "http", + "url": "https://mcp.linear.app/mcp", + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "oauth", + "instructions": "Connects via OAuth. Your MCP host will initiate the Linear OAuth flow. For hosts without OAuth support, use the local stdio version instead." + }, + + "contributor": { + "name": "Linear", + "github": "linear", + "url": "https://linear.app" + }, + + "links": { + "repository": "https://github.com/linear/linear", + "homepage": "https://linear.app", + "documentation": "https://linear.app/docs/mcp" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +}