# Mcp Server Linear

> MCP server from floodfx/mcp-server-linear.

- **Type:** MCP server
- **Install:** `agentstack add mcp-floodfx-mcp-server-linear`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [floodfx](https://agentstack.voostack.com/s/floodfx)
- **Installs:** 0
- **Category:** [Productivity](https://agentstack.voostack.com/c/productivity)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [floodfx](https://github.com/floodfx)
- **Source:** https://github.com/floodfx/mcp-server-linear

## Install

```sh
agentstack add mcp-floodfx-mcp-server-linear
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# mcp-server-linear

This is a MCP server that defines tools for interacting with Linear via an MCP client.

## Current Tools

- `linear-search-issues`: Search for issues in Linear

## Future Tools

- `linear-create-issue`: Create an issue in Linear
- `linear-update-issue`: Update an issue in Linear
- `linear-get-issue`: Get an issue in Linear
- `linear-get-project-issues`: Get all issues in a project in Linear
- `linear-add-comment`: Add a comment to an issue in Linear
- `linear-create-project`: Create a project in Linear
- `linear-update-project`: Update a project in Linear

### Future Resources

- `linear-issue:///{issueId}` - View individual issue details
- `linear-project:///{projectId}` - View project details
- `linear-cycle:///{cycleId}` - View cycle details (defaults to current cycle)
- `linear-team:///{teamId}/issues` - View team issues
- `linear-user:///{userId}/assigned` - View user's assigned issues
- `linear-organization:` - View organization info

## Bun-preferred

This project uses Bun and can be run directly from Bun without transpiling (which is how I use it).  To run it with Bun, you can use the following command:

```bash
bun run index.ts
```

That said, you can run it with Node if you prefer.  To run it with Node, you can use the following command:

```bash
node build/index.js
```

## Standalone Executable
Bun projects can be [compiled into standalone executable](https://bun.sh/docs/bundler/executables).  This allows you to run the server without having to install Bun (theoretically).  To compile the project into a standalone executable, you can use the following command:

```bash
bun build:standalone
```

You may need to change the build `target` depending on the machine you are building for.  See Bun docs for more details.

## Adding to your MCP client via JSON

To add this server to your MCP client, you can use the following JSON configuration:

### Bun Runtime
```json
"linear": {
  "command": "bun",
  "args": [
    "run",
    "/path/to/linear-mcp-server/index.ts"
  ],
  "env": {
    "LINEAR_API_KEY": "lin_api_ABCD"
  }
}
```

### Node Runtime
```json
"linear": {
  "command": "node",
  "args": [
    "/path/to/linear-mcp-server/build/index/js"
  ],
  "env": {
    "LINEAR_API_KEY": "lin_api_ABCD"
  }
}
```

### Standalone Executable
```json
"linear": {
  "command": "/path/to/linear-mcp-server/standalone-linear-mcp-server",
  "args": [],
  "env": {
    "LINEAR_API_KEY": "lin_api_ABCD"
  }
}
```

## Credits

This project was inspired by [jerhadf/linear-mcp-server](https://github.com/jerhadf/linear-mcp-server).  [I and others had trouble getting it to work](https://github.com/jerhadf/linear-mcp-server/issues/5), which prompted me to create my own implementation.  The list of tools and resources seemed worth keeping.

## License

MIT

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [floodfx](https://github.com/floodfx)
- **Source:** [floodfx/mcp-server-linear](https://github.com/floodfx/mcp-server-linear)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-floodfx-mcp-server-linear
- Seller: https://agentstack.voostack.com/s/floodfx
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
