Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

MCP server for IDEA Base — AI-powered project management. Manage projects, tasks, and time tracking directly from Claude Code, Cursor, or any MCP-compatible AI tool.

README.md

@idea-base/mcp-server

MCP (Model Context Protocol) server for IDEA Base — AI-powered project management. Manage projects, tasks, and time tracking directly from Claude Code, Cursor, or any MCP-compatible AI tool.

Quick Setup

1. Get your API key

Sign in to IDEA Base, go to Settings > API Keys, and create a key.

2. Add to your MCP config

Claude Code (~/.claude/claude_desktop_config.json):

{
  "mcpServers": {
    "idea-base": {
      "command": "npx",
      "args": ["-y", "@idea-base/mcp-server"],
      "env": {
        "IDEA_BASE_API_KEY": "ib_your_api_key_here"
      }
    }
  }
}

Cursor (.cursor/mcp.json in your project):

{
  "mcpServers": {
    "idea-base": {
      "command": "npx",
      "args": ["-y", "@idea-base/mcp-server"],
      "env": {
        "IDEA_BASE_API_KEY": "ib_your_api_key_here"
      }
    }
  }
}

Or via Claude Code CLI: ``bash claude mcp add idea-base -- npx -y @idea-base/mcp-server \ --env IDEA_BASE_API_KEY=ib_your_api_key_here ``

3. Start using it

Ask Claude to manage your projects:

  • "List my projects"
  • "Create a task in project 1: Implement login page"
  • "Log 2 hours on task 42 — built the auth flow"
  • "What tasks are in progress?"

Available Tools

Projects

| Tool | Description | |------|-------------| | list_projects | List all projects with task counts and progress | | get_project | Get project details and statistics | | create_project | Create a new project or sub-project | | update_project | Update project name, description, or status |

Tasks

| Tool | Description | |------|-------------| | list_tasks | List tasks for a project (filter by status) | | get_task | Get task details, acceptance criteria, and time entries | | create_task | Create a task with title, description, estimate | | update_task | Update task details | | update_task_status | Change task status (todo/in_progress/done) | | search_tasks | Search tasks across all projects | | quick_log | Create + complete + log time in one step |

Time Tracking

| Tool | Description | |------|-------------| | log_time | Log time against a task with notes | | start_working | Mark yourself as actively working on a task (surfaces the saved resume context + recent work notes so a cold session re-orients) | | stop_working | Stop active work on a task (optionally capture a note and/or resume_context on the way out) |

Activity & Audit Trail

For AI agents, these leave a durable trail of what was done and why on each task — so a future session (or a human reviewer) can see the reasoning, not just the final state.

| Tool | Description | |------|-------------| | add_work_note | Append a timestamped progress note to a task's activity log (append-only journal) | | add_comment | Add a comment to a task's discussion thread (customer-visible by default) | | set_resume_context | Overwrite the task's pinned "where I left off" block, read first on start_working |

Products

| Tool | Description | |------|-------------| | list_products | List products (top-level containers) | | get_product | Get product details with linked projects | | create_product | Create a new product | | link_project_to_product | Link a project to a product |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | IDEA_BASE_API_KEY | Yes | Your API key from Settings > API Keys | | IDEA_BASE_API_URL | No | Custom API URL (default: https://app.idea-base.us/api) |

Real-time Notifications

When you use the MCP server to update tasks or log time, changes are broadcast to all connected users. Team members viewing the project in their browser see live toast notifications — when Claude updates a task, everyone sees it immediately.

Security

  • All data access is scoped to your account via API key
  • API keys support read/write permissions
  • No data is stored locally — all operations go through the IDEA Base API
  • Cross-account access is blocked server-side
  • Rate limited per API key

Development

# Run the server directly
IDEA_BASE_API_KEY=your_key npm start

# Watch mode
IDEA_BASE_API_KEY=your_key npm run dev

License

MIT - IDEA Management LLC

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Developer Tools servers.