Add CLI MCP server - #268
Open
yakky wants to merge 6 commits into
Open
Conversation
…erver Gives coding agents a step-by-step procedure for adding taiga-mcp-server to a user's global (--scope user) Claude Code config: resolving a stable install (pip install --user by default, pipx/uvx as alternatives), collecting credentials safely, the exact claude mcp add invocations, and verification steps. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Stock Taiga has no self-service personal access token feature. The only tokens available are short-lived auth JWTs (24h/8-day on the instance checked) and admin-gated OAuth Application tokens, and this server's CLI has no refresh-token support. Default agent guidance to username/password and only suggest TAIGA_TOKEN when the target instance is verified to offer a durable personal token. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Adds docs/mcp.rst covering what the MCP server is, installing the mcp extra (pip install --user / pipx / uvx), the TAIGA_HOST/TAIGA_TOKEN/ TAIGA_USERNAME/TAIGA_PASSWORD/TAIGA_TLS_VERIFY configuration (env vars and equivalent CLI flags), running it standalone, registering it with an MCP client such as Claude Code, the full tool list grouped by entity, and a security note on write-tool blast radius. Wired into the toctree in docs/index.rst. Verified with a clean -W sphinx-build. Also picks up an unrelated AGENTS.md edit (anonymizing the example Taiga host) that was already pending in the working tree. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
- Restore the testenv:docs section (dropped from tox.ini in 923cabc while "docs" stayed in envlist), and add setuptools to its deps so invoke's clean pre-task (python setup.py clean --all) works. - Fix MANIFEST.in: include AGENTS.md and correct the requirements-tests.txt typo to requirements-test.txt, fixing check-manifest failures in the pypi-description env. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
yakky
force-pushed
the
feature/issue-267-add-mcp
branch
from
August 23, 2026 17:29
3d50687 to
582c540
Compare
yakky
marked this pull request as ready for review
August 23, 2026 17:30
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #268 +/- ##
==========================================
+ Coverage 96.47% 96.68% +0.21%
==========================================
Files 8 12 +4
Lines 936 1177 +241
Branches 67 85 +18
==========================================
+ Hits 903 1138 +235
- Misses 19 22 +3
- Partials 14 17 +3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
Install the mcp extra in requirements.txt so fastmcp is available wherever the test suite runs (tox py311-py314 were failing to collect tests/test_mcp_server.py with ModuleNotFoundError: No module named 'fastmcp'). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
yakky
force-pushed
the
feature/issue-267-add-mcp
branch
from
August 23, 2026 17:44
582c540 to
c314fee
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds an MCP (Model Context Protocol) server to python-taiga, exposing Taiga entities as tools that AI agents (e.g. Claude Code) can call directly.
References
Fix #267
Checklist