Skip to content

Commit 82e06af

Browse files
n2parkocursoragent
andcommitted
Conform plugin to Cursor plugin standard
- Rename plugin from "linear-cursor-plugin" to "linear" to match naming convention used by other Cursor plugins (cloudflare, stripe, etc.) - Move plugin manifest from .cursor/ to .cursor-plugin/ directory - Fix mcp.json to use "type" field instead of "transport" for consistency with the standard MCP config format - Improve README with authentication section, GitHub install path, and clearer structure matching other Cursor plugin READMEs Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent 0d63204 commit 82e06af

File tree

3 files changed

+31
-12
lines changed

3 files changed

+31
-12
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "linear-cursor-plugin",
2+
"name": "linear",
33
"version": "1.0.0",
44
"description": "Cursor Plugin for Linear - enables AI assistants to manage issues, projects, documents, and more across your Linear workspace",
55
"author": {

README.md

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,44 @@
1-
# Linear Cursor Plugin
1+
# Linear Plugin for Cursor
22

3-
A [Cursor](https://cursor.com) plugin that provides access to Linear workspaces, enabling AI assistants to manage issues, projects, documents, and more.
3+
A [Cursor](https://cursor.com) plugin that connects your AI assistant to [Linear](https://linear.app), enabling it to manage issues, projects, documents, and more across your Linear workspace.
44

55
## Overview
66

7-
This plugin connects your AI assistant to Linear.
7+
This plugin integrates Linear's MCP server with Cursor, allowing Cursor's AI agent to interact with your Linear workspace. Cursor automatically connects to Linear's hosted MCP server at:
8+
9+
```
10+
https://mcp.linear.app/mcp
11+
```
812

913
## Installation
1014

11-
1. Open Cursor settings
12-
2. Navigate to **Plugins**
13-
3. Click **Install from Marketplace**
14-
4. Search for "Linear"
15-
5. Click **Install**
15+
In Cursor, add this plugin from the marketplace or install directly from GitHub:
16+
17+
```
18+
linear/cursor-plugin
19+
```
1620

1721
Alternatively, to install from source:
18-
1. Clone or download this plugin
22+
1. Clone or download this repository
1923
2. In Cursor settings, go to **Plugins**
2024
3. Click **Load from Directory**
2125
4. Select the plugin directory
2226

27+
## Authentication
28+
29+
The Linear MCP server supports **OAuth**. You'll be prompted to authenticate with your Linear account when first using the plugin.
30+
31+
## Directory Structure
32+
33+
```
34+
cursor-plugin/
35+
├── .cursor-plugin/
36+
│ └── plugin.json # Plugin manifest
37+
├── mcp.json # MCP server configuration
38+
├── logo.svg # Plugin logo
39+
└── README.md
40+
```
41+
2342
## Support
2443

2544
- **Linear Documentation:** https://linear.app/docs

mcp.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"linear": {
3-
"url": "https://mcp.linear.app/mcp",
4-
"transport": "http"
3+
"type": "http",
4+
"url": "https://mcp.linear.app/mcp"
55
}
66
}

0 commit comments

Comments
 (0)