thinker-mcp
OfficialAllows creating and using AI-agent sessions powered by Google language models through the Thinker agent service, enabling message-based interactions with models via session management tools.
Allows creating and using AI-agent sessions powered by OpenAI language models through the Thinker agent service, enabling message-based interactions with models like GPT via session management tools.
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., "@thinker-mcpShow me the current sprint board"
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.
thinker-mcp
MCP server for the thinker-ci platform. Exposes tickets, CI/CD pipelines, project-management data, and AI-agent sessions as MCP tools and resources so that Claude Code (or any other MCP-capable client) can interact with the platform directly from the assistant.
Architecture
Claude Code / Cursor / other MCP client
│ stdio / SSE
▼
thinker-mcp ← this repo
┌──────────────────────────────────┐
│ tools/tickets.py (file-system) │─── reads/writes thinker-blueprint/
│ tools/pipelines.py │─── thinker-console REST API
│ tools/pm.py │─── thinker-console REST API
│ tools/agents.py │─── thinker-agent REST API
│ resources/schema.py │─── thinker-console /api/schema/
│ resources/docs.py │─── thinker-blueprint/ (local)
└──────────────────────────────────┘
│ │
thinker-console thinker-agent
(Django REST API) (LLM agent API)
│
thinker-blueprint
(git repo on disk)thinker-console is the central Django application that owns projects, pipelines, runs, PM objects (epics, stories, tasks, sprints, milestones), and user/tenant data.
thinker-agent is a lightweight FastAPI service that manages stateful LLM sessions. It proxies requests to Anthropic, OpenAI, Google, and AWS Bedrock.
thinker-blueprint is a git repository of Markdown files that serves as the project's file-system ticketing system. The tickets/ tree is readable and writable by thinker-mcp without going through an API.
Related MCP server: linear-mcp-server
Installation
From source (development)
git clone git@github.com:thinker-ci/thinker-mcp.git
cd thinker-mcp
pip install -e .Via uvx (no checkout required)
uvx thinker-mcpConfiguration
Copy .env.example to .env and fill in the values:
cp .env.example .env
$EDITOR .envVariable | Default | Description |
|
| Base URL of the thinker-console Django API |
| (required) | API token for authenticating to thinker-console ( |
|
| Base URL of the thinker-agent FastAPI service |
| (required) | Bearer token for authenticating to thinker-agent |
|
| Absolute path to a local checkout of thinker-blueprint |
Tools
Ticket tools (file-system)
These tools read from and write to the tickets/ tree inside a local thinker-blueprint checkout. No network calls are made.
Tool | Parameters | Description |
|
| List tickets with optional filters |
|
| Get full markdown content of a ticket (e.g. |
|
| Update the |
|
| Create a new ticket file |
Pipeline tools (thinker-console)
Tool | Parameters | Description |
|
| List pipelines for a project |
|
| Trigger a pipeline run |
|
| Get status and metadata for a run |
|
| Fetch raw logs from a job |
|
| Cancel a running pipeline run |
| — | List all CI runners and their status |
Project-management tools (thinker-console)
Tool | Parameters | Description |
|
| List epics |
|
| List stories |
|
| List tasks |
|
| Update a story |
|
| Create a task |
| — | Current sprint kanban board |
| — | List all sprints |
| — | List all milestones |
Agent tools (thinker-agent)
Tool | Parameters | Description |
|
| Create a new LLM session |
|
| Send a message; returns the assistant response |
| — | List all active sessions |
Resources
URI | MIME type | Description |
|
| Live OpenAPI 3.x schema from thinker-console |
|
| Concatenated |
|
| Individual ticket file (e.g. |
Using with Claude Code
Add to your project's .claude.json (or ~/.claude.json for global access):
{
"mcpServers": {
"thinker": {
"command": "thinker-mcp",
"env": {
"THINKER_CONSOLE_URL": "https://console.thinker.ci",
"THINKER_CONSOLE_TOKEN": "your-token-here",
"THINKER_AGENT_URL": "https://agent.thinker.ci",
"THINKER_AGENT_TOKEN": "your-agent-token-here",
"THINKER_BLUEPRINT_PATH": "/home/you/thinker-blueprint"
}
}
}
}Or use a .env file in your working directory instead of inline env keys.
Restart Claude Code after editing the config. Run /mcp to verify the server is connected and tools are listed.
Using with other MCP clients
Any client that supports the MCP stdio transport can connect by spawning:
thinker-mcpThe server reads STDIN and writes STDOUT using the JSON-RPC framing defined by the MCP protocol. Set the environment variables above before launching.
Running in Docker
docker build -t thinker-mcp .
docker run --rm -i \
-e THINKER_CONSOLE_URL=http://console:8000 \
-e THINKER_CONSOLE_TOKEN=secret \
-e THINKER_AGENT_URL=http://agent:8080 \
-e THINKER_AGENT_TOKEN=secret \
-v /data/thinker-blueprint:/data/thinker-blueprint:ro \
thinker-mcpDevelopment
# Install in editable mode with dev extras (add [dev] if you add them to pyproject.toml)
pip install -e .
# Lint
ruff check src/
# Format
ruff format src/This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityCmaintenanceMCP server that exposes the Paperclip control plane API as tools for Claude Code agents — manage issues, coordinate agents, post comments, and orchestrate work without direct API calls.100532MIT
- Flicense-qualityDmaintenanceMCP server for integrating Linear with Claude Code and other MCP clients. Enables issue management, project planning, and status tracking through a set of tools.
- FlicenseBqualityDmaintenanceMCP server that exposes the full Flow Boards REST API as Claude tools, enabling natural language management of tickets, flows, bins, boards, comments, and more.38111
- Flicense-qualityBmaintenanceMCP server for AI DevTool workflow, exposing tools and resources for code review, repository chat, and repository operations.1
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/thinker-ci/thinker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server