github
Developer tools

Linear

linear-mcp·by jerhadf·v1.2.1

Issue tracking with Linear — create, update, and search issues, projects, and cycles.

§ Install

Add to Claude Desktop

Edit your claude_desktop_config.json and add the following entry under mcpServers:

"linear": {
  "command": "npx",
  "args": [
    "-y",
    "linear-mcp",
    "postgresql://localhost/mydb"
  ]
}

§ Tools exposed

What this server gives your model

query()Run a read-only SQL SELECT against the configured database. Parameterized values supported.
list_tables()Return all user tables across the database, with schema and row count estimates.
describe_table()Return columns, types, defaults, and indexes for a given table.
list_schemas()Return all schemas the configured user can read.

§ Compatibility

Works with

Claude DesktopVerified
ClineVerified
ContinueReported working
CursorVerified
ZedReported working
Custom clientstdio compatible

§ Security notes

What this server can do

Reads from your databaseThe configured user's read permissions apply. Use a dedicated read-only role.
Returns query results to your modelSensitive rows in returned data become part of the model context.
No write or DDL operationsINSERT, UPDATE, DELETE, and schema changes are rejected.
Connection string contains credentialsAvoid committing config files. Prefer environment variables.