linear-mcp-fast 0.2.3__py3-none-any.whl → 0.2.5__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: linear-mcp-fast
3
- Version: 0.2.3
3
+ Version: 0.2.5
4
4
  Summary: Fast MCP server for Linear - reads from Linear.app's local cache on macOS
5
5
  Author: everything-chalna
6
6
  License-Expression: MIT
@@ -45,31 +45,26 @@ Linear.app (Electron) syncs all your data to a local IndexedDB. This MCP server
45
45
  - **Offline access** - Works without internet
46
46
  - **Faster iteration** - No rate limits, no latency
47
47
 
48
- **Use with**: Official Linear MCP for write operations (comments, status updates, issue creation).
48
+ ## Requirements
49
49
 
50
- ## Installation
51
-
52
- ```bash
53
- pip install linear-mcp-fast
54
- # or
55
- uv pip install linear-mcp-fast
56
- ```
50
+ - **macOS only** - Linear.app stores its cache at `~/Library/Application Support/Linear/`
51
+ - **Linear.app** installed and opened at least once (to populate the cache)
57
52
 
58
53
  ## Setup
59
54
 
55
+ Use `linear-fast` for reads and the official Linear MCP for writes.
56
+
60
57
  ### Claude Code
61
58
 
62
59
  ```bash
63
- # 1. Add linear-mcp-fast (reads from local cache)
60
+ # Fast reads (this package)
64
61
  claude mcp add linear-fast -- uvx linear-mcp-fast
65
62
 
66
- # 2. Add official Linear MCP (for writes)
63
+ # Writes via official Linear MCP
67
64
  claude mcp add --transport http linear https://mcp.linear.app/mcp
68
65
  ```
69
66
 
70
- Now you have:
71
- - `linear-fast` → Fast reads from local cache
72
- - `linear` → Writes (comments, updates)
67
+ Run `/mcp` to authenticate with Linear.
73
68
 
74
69
  ### Claude Desktop
75
70
 
@@ -90,7 +85,22 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
90
85
  }
91
86
  ```
92
87
 
93
- ### Cursor / VS Code
88
+ ### Cursor
89
+
90
+ Install Linear MCP from [Cursor's MCP tools page](https://cursor.com/mcp), then add linear-fast:
91
+
92
+ ```json
93
+ {
94
+ "mcpServers": {
95
+ "linear-fast": {
96
+ "command": "uvx",
97
+ "args": ["linear-mcp-fast"]
98
+ }
99
+ }
100
+ }
101
+ ```
102
+
103
+ ### VS Code / Windsurf / Others
94
104
 
95
105
  ```json
96
106
  {
@@ -107,24 +117,16 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
107
117
  }
108
118
  ```
109
119
 
110
- ---
111
-
112
- ## Prerequisites
113
-
114
- - **macOS** (Linear.app stores cache in `~/Library/Application Support/Linear/`)
115
- - **Linear.app** installed and opened at least once
116
-
117
- ---
120
+ See [Linear MCP docs](https://developers.linear.app/docs/ai/mcp-server) for Zed, Codex, v0, and other clients.
118
121
 
119
122
  ## Available Tools
120
123
 
121
- ### Reading (linear-fast)
124
+ Tools mirror the official Linear MCP for easy switching:
122
125
 
123
126
  | Tool | Description |
124
127
  |------|-------------|
125
- | `list_issues` | List issues with filters (assignee, team, state, priority) |
126
- | `get_issue` | Get issue details with comments |
127
- | `list_my_issues` | List issues assigned to a user |
128
+ | `list_issues` | List issues with filters (team, state, assignee, priority) |
129
+ | `get_issue` | Get issue details by identifier (e.g., `DEV-123`) |
128
130
  | `list_teams` | List all teams |
129
131
  | `get_team` | Get team details |
130
132
  | `list_projects` | List all projects |
@@ -133,44 +135,37 @@ Add to `~/Library/Application Support/Claude/claude_desktop_config.json`:
133
135
  | `get_user` | Get user details |
134
136
  | `list_issue_statuses` | List workflow states for a team |
135
137
 
136
- ### Writing (official Linear MCP)
138
+ For writes (create issue, add comment, update status), use the official Linear MCP.
137
139
 
138
- Use the official Linear MCP (`linear`) for:
139
- - Creating/updating issues
140
- - Adding comments
141
- - Changing status
140
+ ## How It Works
142
141
 
143
- ---
142
+ ```
143
+ Linear.app (Electron)
144
+ ↓ syncs data to local cache
145
+ IndexedDB (LevelDB)
146
+ ~/Library/Application Support/Linear/IndexedDB/...
147
+ ↓ read by
148
+ linear-mcp-fast
149
+
150
+ Fast, offline access to issues, teams, users, projects
151
+ ```
144
152
 
145
153
  ## Troubleshooting
146
154
 
147
- ### "Linear database not found"
155
+ **"Linear database not found"**
148
156
 
149
- Linear.app needs to be installed and opened at least once:
157
+ Linear.app must be installed and opened at least once:
150
158
  ```bash
151
159
  ls ~/Library/Application\ Support/Linear/IndexedDB/
152
160
  ```
153
161
 
154
- ### Data seems stale
162
+ **Data seems stale**
155
163
 
156
- Local cache is updated when Linear.app syncs. Open Linear.app to refresh.
164
+ The local cache updates when Linear.app syncs. Open Linear.app to refresh.
157
165
 
158
- ---
159
-
160
- ## How It Works
161
-
162
- ```
163
- Linear.app (Electron)
164
- ↓ syncs to
165
- IndexedDB (LevelDB format)
166
- ~/Library/Application Support/Linear/IndexedDB/...
167
- ↓ read by
168
- linear-mcp-fast
169
- ↓ provides
170
- Fast read-only access to issues, users, teams, comments
171
- ```
166
+ **Returns 0 issues**
172
167
 
173
- ---
168
+ Multiple IndexedDB databases may exist. Version 0.2.2+ automatically finds the correct one.
174
169
 
175
170
  ## License
176
171
 
@@ -32,8 +32,8 @@ tools_and_utilities/benchmark.py,sha256=fyD5U6yI7Y0TkyhYtvvaHyk9Y2jJe2yxYWoFPQWy
32
32
  tools_and_utilities/ccl_chrome_audit.py,sha256=irGyYJae0apZDZCn23jMKmY3tYQgWyZEL8vdUBcHLZk,24695
33
33
  tools_and_utilities/dump_indexeddb_details.py,sha256=ipNWLKPQoSNhCtPHKWvMWpKu8FhCnvc4Rciyx-90boI,2298
34
34
  tools_and_utilities/dump_leveldb.py,sha256=hj7QnOHG64KK2fKsZ9qQOVqUUmHUtxUZqPYl4EZJO9U,1882
35
- linear_mcp_fast-0.2.3.dist-info/METADATA,sha256=O0IJ9D9EFWcFs1bkvFBg0hVJYXHrKilNwP6OSH_QP9E,4536
36
- linear_mcp_fast-0.2.3.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
37
- linear_mcp_fast-0.2.3.dist-info/entry_points.txt,sha256=Aa98tAkWz_08mS_SRyfyx0k3PuMBQoMygT88HCKMyWk,57
38
- linear_mcp_fast-0.2.3.dist-info/top_level.txt,sha256=j-O2BoBpFBpGyTl2V1cp0ZjxZAQwpkweeNxG4BcQ7io,73
39
- linear_mcp_fast-0.2.3.dist-info/RECORD,,
35
+ linear_mcp_fast-0.2.5.dist-info/METADATA,sha256=T7IeVGh3uq4Wj3HtBaQS9yZYC5AQVWqNZMnHm5W8sjw,4729
36
+ linear_mcp_fast-0.2.5.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
37
+ linear_mcp_fast-0.2.5.dist-info/entry_points.txt,sha256=Aa98tAkWz_08mS_SRyfyx0k3PuMBQoMygT88HCKMyWk,57
38
+ linear_mcp_fast-0.2.5.dist-info/top_level.txt,sha256=j-O2BoBpFBpGyTl2V1cp0ZjxZAQwpkweeNxG4BcQ7io,73
39
+ linear_mcp_fast-0.2.5.dist-info/RECORD,,