-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.md.j2
94 lines (70 loc) · 2.21 KB
/
README.md.j2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Linear MCP Server
A Model Context Protocol server for Linear.
## Tools
> [!IMPORTANT]
> * means required.
{% for tool in tools %}
### `{{ tool.name }}`
{{ tool.description }}
**Parameters**
{% if (tool.inputSchema.properties | length > 0) %}
{%- for paramName, param in tool.inputSchema.properties %}
- `{{ paramName }}` ({{ param.type }}{% if tool.inputSchema.required and paramName in tool.inputSchema.required %}*{% endif %}): {{ param.description }}
{%- endfor %}
{% else %}
N/A
{% endif %}
{%- endfor %}
## Examples
### Listing issues assigned to me

### Creating an issue


## How to use
To use with Claude Desktop, add the server config.
### Linear API key
You can create a Personal API Key at [https://linear.app/your-team-name/settings/account/security](https://linear.app/<team>/settings/account/security). Remember to replace `your-team-name` with the correct value.
### Automatic
> [!TIP]
> `.env` files are supported.
```shell
LINEAR_API_KEY=<your-linear-api-key> npm run configure [--force] [--name=<server-name>]
```
### Manual
On MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
On Windows: `%APPDATA%/Claude/claude_desktop_config.json`
```json
{
"mcpServers": {
"linear-context-server": {
"command": "node",
"args": [
"/<path-to-folder>/linear-context-server/build/server.js"
],
"env": {
"LINEAR_API_KEY": <your-linear-api-key>
}
}
}
}
```
## Development
Install dependencies:
```bash
npm install
```
Build the server:
```bash
npm run build
```
For development with auto-rebuild:
```bash
npm run watch
```
### Debugging
Since MCP servers communicate over stdio, debugging can be challenging. We recommend using the [MCP Inspector](https://github.com/modelcontextprotocol/inspector), which is available as a package script:
```bash
npm run inspector
```
The Inspector will provide a URL to access debugging tools in your browser.