Abscissa
Abscissa is a Python MCP server that exposes Linear's GraphQL API as 42 tools, enabling full project management from any MCP-compatible client.
Identity & Users
Get the authenticated Linear user and list all organization users.
Issues
Create, update, retrieve, and search issues (with filters like state, priority, assignee, team).
Get issues assigned to yourself or a specific user; assign issues to users.
Add markdown comments, set story point/hour estimates, and add/remove labels.
Archive or permanently delete issues (requires
confirm=true).
Issue Dependencies
List, add, and remove dependencies between issues (blocks/blocked by).
Labels & Workflow States
List team workflow states; list, create, attach, and remove issue labels.
Projects
Create, get, list, update, and archive projects (archive requires
confirm=true).List project issues; add or remove issues from projects.
Post and list project status updates with health indicators.
Project Labels
List, create, attach, and remove reusable project labels.
Teams
List all teams and get details for a specific team by key or UUID.
Cycles (Sprints)
Create, update, archive, and list cycles; list issues within a specific cycle.
Pagination
Most list and search tools support cursor-based pagination via
limitandcursorparameters.
Safety
Destructive operations (archive/delete) require explicit
confirm=trueto prevent accidental data loss.
Provides tools for interacting with Linear's API, enabling AI agents to manage issues, projects, cycles, dependencies, comments, labels, workflow states, teams, and users programmatically through the Linear platform.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Abscissashow my open issues"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Abscissa is a Python stdio MCP server for Linear. It turns Linear's GraphQL API into 42 tools for an MCP client: issues, projects, cycles, dependencies, comments, labels, workflow states, teams, and users.
The design priority is deliberate control over project data. Read operations
return cursor-paginated results; get_user_issues() resolves the authenticated
Linear user; archive and delete tools require an explicit confirm=true before
they make a destructive API call. The server stores no credentials and reads
LINEAR_API_KEY from its process environment.
Abscissa uses the stdio transport from the Model Context Protocol. Any client that supports stdio MCP can launch it as a local tool process.
Run it
You need Python 3.10+ and a Linear personal API key.
git clone https://github.com/KazKozDev/abscissa.git
cd abscissa
python3 -m venv .venv
.venv/bin/pip install -e '.[dev]'
export LINEAR_API_KEY='lin_api_…'
.venv/bin/abscissaYou can also install Abscissa directly from PyPI:
pip install abscissaThe final command starts the MCP server on standard input and output. Register
.venv/bin/abscissa as a stdio command in your MCP client, and pass
LINEAR_API_KEY through that client's environment or secret manager.
The key remains outside the repository. The .gitignore excludes common local
environment files, including .env and .venv.
Related MCP server: linear-mcp
Example prompts
Once Abscissa is registered in your MCP client, try prompts like:
Show my open Linear issues grouped by project.
Create an issue in ENG for fixing onboarding copy.
List issues blocked by GEN-32.Tools
Area | Tools |
Identity |
|
Issues |
|
Issue lifecycle |
|
Dependencies |
|
Labels and workflow |
|
Teams and people |
|
Projects |
|
Project labels |
|
Project updates |
|
Cycles |
|
Search and list tools accept limit and cursor. Their responses keep the same
shape:
{
"items": [],
"next_cursor": null
}Pass a non-null next_cursor back as cursor to request the next page.
list_issue_dependencies returns separate blocks and blocked_by lists.
Each item includes its relation_id; use it to remove that dependency. Its
next_cursors object has separate cursors for each direction.
Destructive actions
archive_issue, archive_project, and delete_issue are marked with MCP's
destructiveHint. They refuse to call Linear until the client invokes them
with confirm=true.
Deletion requires explicit confirmation: set confirm=trueThis prevents an accidental tool call from deleting or archiving data. It does not replace Linear's own access controls: the API key still determines which resources the server may read or change.
Verify the checkout
.venv/bin/ruff check .
.venv/bin/python -m pytestThe current checkout produces:
All checks passed!
.......... [100%]
10 passedThe tests cover pagination bounds and response shape, authenticated-user issue resolution, project membership, cycle queries, dependency direction, confirmation guards, cycle lifecycle operations, and MCP tool registration. GitHub Actions runs the same lint and test commands on Python 3.10, 3.11, 3.12, and 3.13.
Limitations
Abscissa is a local stdio server, not an HTTP service. It needs a running MCP-capable client and a valid Linear API key. The automated suite avoids mutating a real Linear workspace; create, update, archive, and delete behavior is therefore protected by unit tests rather than a live write test.
License
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/KazKozDev/abscissa'
If you have feedback or need assistance with the MCP directory API, please join our Discord server