com.ithura/mcp is an MCP server that manage tasks, sprints, projects, and wiki pages in your Ithura workspace. Its tool list has not been published yet over stdio and http, requires no API key, and scores 57/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"ithura": {
"env": {
"ITHURA_API_KEY": "your-api-token",
"ITHURA_WORKSPACE_SLUG": "your-workspace"
},
"args": [
"-y",
"ithura-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol server for Ithura, a quiet project management workspace for
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'ithura-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked ithura-mcp against OSV.dev.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools / education
Context7 Platform -- Up-to-date code documentation for LLMs and AI code editors
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for com.ithura/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
No install step. Point your MCP client at npx:
npx ithura-mcp
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/mcp.json takes the same block.
| 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.
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.
issue in the HTTP API; the product calls
them tasks. The tool names follow the API.ITHURA_API_URL to your instance and everything else works
unchanged.MIT