Are you the author? Sign in to claim
A wrapper around the Linear API for internal LLMs
A wrapper around the Linear API to provide some focused tools to LLMs via the Model Context Protocol.
Cloning and running the server locally.
git clone git@github.com:timescale/tiger-linear-mcp-server.git
Run npm i to install dependencies and build the project. Use npm run watch to rebuild on changes.
Create a .env file based on the .env.sample file.
cp .env.sample .env
The MCP Inspector is a very handy to exercise the MCP server from a web-based UI.
npx @modelcontextprotocol/inspector
| Field | Value |
|---|---|
| Transport Type | STDIO |
| Command | node |
| Arguments | dist/index.js |
Create/edit the file ~/Library/Application Support/Claude/claude_desktop_config.json to add an entry like the following, making sure to use the absolute path to your local tiger-linear-mcp-server project, and use a valid api token.
{
"mcpServers": {
"tiger-linear": {
"command": "node",
"args": [
"/absolute/path/to/tiger-linear-mcp-server/dist/index.js",
"stdio"
],
"env": {
"LINEAR_API_KEY": "lin_api_..."
}
}
}
}
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows