pypi abscissastdioMITupdated 1mo ago
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.
Abscissa で何ができる?
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/abscissa
You can also install Abscissa directly from PyPI:
pip install abscissa
The 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.
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 | get_current_user |
| Issues | create_issue, update_issue, search_issues, get_user_issues, get_issue, assign_issue, add_comment, set_issue_estimate |
| Issue lifecycle | archive_issue, delete_issue |
| Dependencies | list_issue_dependencies, add_issue_dependency, remove_issue_dependency |
| Labels and workflow | list_workflow_states, list_issue_labels, create_label, add_issue_label, remove_issue_label |
| Teams and people | list_teams, get_team, list_users |
| Projects | create_project, get_project, list_projects, list_project_issues, set_issue_project, remove_issue_from_project, update_project, update_project_details, archive_project |
| Project labels | list_project_labels, create_project_label, add_project_label, remove_project_label |
| Project updates | create_project_update, list_project_updates |
| Cycles | create_cycle, update_cycle, archive_cycle, list_cycles, list_cycle_issues |
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=true
This 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 pytest
The current checkout produces:
All checks passed!
.......... [100%]
10 passed
The 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
インストール
Abscissa をクライアントに追加します。お使いのものを選んでください。
claude mcp add abscissa -- uvx abscissacodex mcp add abscissa -- uvx abscissaamp mcp add abscissa -- uvx abscissa{
"mcpServers": {
"abscissa": {
"command": "uvx",
"args": [
"abscissa"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"abscissa": {
"command": "uvx",
"args": [
"abscissa"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"abscissa","command":"uvx","args":["abscissa"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"abscissa": {
"command": "uvx",
"args": [
"abscissa"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"abscissa": {
"command": "uvx",
"args": [
"abscissa"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"abscissa": {
"command": "uvx",
"args": [
"abscissa"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"abscissa": {
"type": "local",
"command": "uvx",
"args": [
"abscissa"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"abscissa": {
"command": {
"path": "uvx",
"args": [
"abscissa"
]
}
}
}
}Add to your Zed `settings.json`.
uvx abscissaRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
スコア
39 / 100
情報不足
- ドキュメント25/25
- メンテナンス16/25
- 信頼性13/20
- 機能0/15
- 導入のしやすさ12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 52 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
バージョン履歴
| バージョン | 公開日 |
|---|---|
| 0.1.3最新 | 2026年7月11日 |
| 0.1.2 | 2026年7月11日 |