npm ithura-mcpstdioMITupdated 1mo ago
A Model Context Protocol server for Ithura, a quiet project management workspace for deliberate teams.
What can you do with ithura?
Ithura MCP server
A Model Context Protocol server for Ithura, a quiet project management workspace for deliberate teams.
Point Claude, Cursor, or any MCP client at your Ithura workspace and let it read and write real work: tasks, sprints, projects, modules, wiki pages, and intake.
"What is left in the current sprint?"
"Create a task for the login timeout bug and put it in this sprint."
"Summarise every task that moved to Done this week."
Listed in the official MCP Registry
as com.ithura/mcp.
Install
No install step. Point your MCP client at npx:
npx ithura-mcp
Claude Desktop / Claude Code
Add to your MCP settings (claude_desktop_config.json, or .mcp.json in a
project for Claude Code):
{
"mcpServers": {
"ithura": {
"command": "npx",
"args": ["-y", "ithura-mcp"],
"env": {
"ITHURA_API_KEY": "your-api-token",
"ITHURA_WORKSPACE_SLUG": "your-workspace"
}
}
}
}
Cursor
~/.cursor/mcp.json takes the same block.
Configuration
| Variable | Required | Default | Notes |
|---|---|---|---|
ITHURA_API_KEY |
yes | Workspace API token, from Settings > API tokens | |
ITHURA_WORKSPACE_SLUG |
yes | The slug in your workspace URL | |
ITHURA_API_URL |
no | https://api.ithura.com |
Point at your own host when self-hosting |
Create the token in Ithura under Settings > API tokens. It carries the permissions of the member who created it, so create it as a user whose access matches what you want the agent to have.
Tools
23 tools across the work graph:
| Area | Tools |
|---|---|
| Projects | list_projects, get_project, create_project, update_project |
| Tasks | list_issues, get_issue, create_issue, update_issue, delete_issue |
| Comments | list_issue_comments, add_issue_comment |
| Sprints | list_cycles, create_cycle, add_issues_to_cycle, remove_issue_from_cycle |
| Modules | list_modules, create_module, add_issues_to_module, delete_module |
| Metadata | list_states, list_labels, create_label |
| Search | search_workspace |
Every tool returns JSON, so the model sees real field values rather than prose.
Notes
- The API noun for a work item is
issuein the HTTP API; the product calls them tasks. The tool names follow the API. - Writes are real. Consider a token scoped to a member with limited project access if you want the agent kept to a corner of the workspace.
- Self-hosting: set
ITHURA_API_URLto your instance and everything else works unchanged.
Links
- Ithura: https://ithura.com
- Documentation: https://ithura.com/docs
- API reference: https://ithura.com/docs/integrations
License
MIT
Install
Add ithura to your client. Pick the one you use.
claude mcp add ithura-mcp -- npx -y ithura-mcpcodex mcp add ithura-mcp -- npx -y ithura-mcpamp mcp add ithura-mcp -- npx -y ithura-mcp{
"mcpServers": {
"ithura-mcp": {
"command": "npx",
"args": [
"-y",
"ithura-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"ithura-mcp": {
"command": "npx",
"args": [
"-y",
"ithura-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"ithura-mcp","command":"npx","args":["-y","ithura-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"ithura-mcp": {
"command": "npx",
"args": [
"-y",
"ithura-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"ithura-mcp": {
"command": "npx",
"args": [
"-y",
"ithura-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"ithura-mcp": {
"command": "npx",
"args": [
"-y",
"ithura-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"ithura-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"ithura-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"ithura-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"ithura-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y ithura-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/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 22 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
Version history
| Versions | Published |
|---|---|
| 1.0.1Latest | Aug 9, 2026 |