linear-mcp-fast 0.3.0__py3-none-any.whl → 0.3.1__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.
- {linear_mcp_fast-0.3.0.dist-info → linear_mcp_fast-0.3.1.dist-info}/METADATA +12 -2
- {linear_mcp_fast-0.3.0.dist-info → linear_mcp_fast-0.3.1.dist-info}/RECORD +5 -5
- {linear_mcp_fast-0.3.0.dist-info → linear_mcp_fast-0.3.1.dist-info}/WHEEL +0 -0
- {linear_mcp_fast-0.3.0.dist-info → linear_mcp_fast-0.3.1.dist-info}/entry_points.txt +0 -0
- {linear_mcp_fast-0.3.0.dist-info → linear_mcp_fast-0.3.1.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: linear-mcp-fast
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.1
|
|
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
|
|
@@ -32,18 +32,22 @@ While using the official Linear MCP with Claude Code, I noticed that **read oper
|
|
|
32
32
|
|
|
33
33
|
The problem:
|
|
34
34
|
- Official Linear MCP makes API calls for every read
|
|
35
|
+
- Issue descriptions require separate API calls
|
|
35
36
|
- Responses include excessive metadata (full user objects, workflow states, etc.)
|
|
36
37
|
- Context window fills up quickly when exploring issues
|
|
37
38
|
- Slower response times due to network latency
|
|
38
39
|
|
|
39
40
|
My solution: **Read directly from Linear.app's local cache.**
|
|
40
41
|
|
|
42
|
+
Linear.app stores issue descriptions in Y.js CRDT format. This package decodes them locally, so you get descriptions without API calls.
|
|
43
|
+
|
|
41
44
|
Linear.app (Electron) syncs all your data to a local IndexedDB. This MCP server reads from that cache, giving you:
|
|
42
45
|
|
|
43
46
|
- **Zero API calls** - Instant reads from disk
|
|
44
47
|
- **Smaller responses** - Only the fields you need
|
|
45
48
|
- **Offline access** - Works without internet
|
|
46
49
|
- **Faster iteration** - No rate limits, no latency
|
|
50
|
+
- **Issue descriptions** - Extracts text from Y.js encoded content (v0.3.0+)
|
|
47
51
|
|
|
48
52
|
## Requirements
|
|
49
53
|
|
|
@@ -146,10 +150,16 @@ IndexedDB (LevelDB)
|
|
|
146
150
|
~/Library/Application Support/Linear/IndexedDB/...
|
|
147
151
|
↓ read by
|
|
148
152
|
linear-mcp-fast
|
|
149
|
-
↓
|
|
153
|
+
↓ decodes Y.js CRDT content
|
|
150
154
|
Fast, offline access to issues, teams, users, projects
|
|
151
155
|
```
|
|
152
156
|
|
|
157
|
+
### Issue Descriptions
|
|
158
|
+
|
|
159
|
+
Linear stores issue descriptions in a separate `contentState` field using Y.js CRDT encoding. This package decodes the binary format to extract readable text, so `get_issue` returns the description without an API call.
|
|
160
|
+
|
|
161
|
+
Note: The extraction is text-based (not full Y.js parsing), so some formatting may be lost. For rich markdown content, use the official Linear MCP.
|
|
162
|
+
|
|
153
163
|
## Troubleshooting
|
|
154
164
|
|
|
155
165
|
**"Linear database not found"**
|
|
@@ -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.3.
|
|
36
|
-
linear_mcp_fast-0.3.
|
|
37
|
-
linear_mcp_fast-0.3.
|
|
38
|
-
linear_mcp_fast-0.3.
|
|
39
|
-
linear_mcp_fast-0.3.
|
|
35
|
+
linear_mcp_fast-0.3.1.dist-info/METADATA,sha256=kcsnPWx6VVZ6NAmOJu1oRPccW0FHJRO1t0TziS3M6tU,5295
|
|
36
|
+
linear_mcp_fast-0.3.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
37
|
+
linear_mcp_fast-0.3.1.dist-info/entry_points.txt,sha256=Aa98tAkWz_08mS_SRyfyx0k3PuMBQoMygT88HCKMyWk,57
|
|
38
|
+
linear_mcp_fast-0.3.1.dist-info/top_level.txt,sha256=j-O2BoBpFBpGyTl2V1cp0ZjxZAQwpkweeNxG4BcQ7io,73
|
|
39
|
+
linear_mcp_fast-0.3.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|