Skip to content

docs: update API token URL #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ npx @smithery/cli install linear-mcp-server --client claude

### Manual Installation

1. Create or get a Linear API key for your team: [https://linear.app/YOUR-TEAM/settings/api](https://linear.app/YOUR-TEAM/settings/api)
1. Create or get a Linear API key for your team: [https://linear.app/YOUR-TEAM/settings/account/security](https://linear.app/YOUR-TEAM/settings/account/security)

2. Add server config to Claude Desktop:
- MacOS: `~/Library/Application Support/Claude/claude_desktop_config.json`
@@ -28,10 +28,7 @@ npx @smithery/cli install linear-mcp-server --client claude
"mcpServers": {
"linear": {
"command": "npx",
"args": [
"-y",
"linear-mcp-server"
],
"args": ["-y", "linear-mcp-server"],
"env": {
"LINEAR_API_KEY": "your_linear_api_key_here"
}
@@ -45,6 +42,7 @@ npx @smithery/cli install linear-mcp-server --client claude
### Tools

1. **`linear_create_issue`**: Create a new Linear issues

- Required inputs:
- `title` (string): Issue title
- `teamId` (string): Team ID to create issue in
@@ -54,6 +52,7 @@ npx @smithery/cli install linear-mcp-server --client claude
- `status` (string): Initial status name

2. **`linear_update_issue`**: Update existing issues

- Required inputs:
- `id` (string): Issue ID to update
- Optional inputs:
@@ -63,6 +62,7 @@ npx @smithery/cli install linear-mcp-server --client claude
- `status` (string): New status name

3. **`linear_search_issues`**: Search issues with flexible filtering

- Optional inputs:
- `query` (string): Text to search in title/description
- `teamId` (string): Filter by team
@@ -73,6 +73,7 @@ npx @smithery/cli install linear-mcp-server --client claude
- `limit` (number, default: 10): Max results

4. **`linear_get_user_issues`**: Get issues assigned to a user

- Optional inputs:
- `userId` (string): User ID (omit for authenticated user)
- `includeArchived` (boolean): Include archived issues