TaskJunkyDocs

Claude Code

Configure TaskJunky MCP server for Claude Code (CLI, desktop, and IDE extensions).

Claude Code supports OAuth-based MCP connections. Add TaskJunky with one command:

claude mcp add -s user taskjunky -t streamable-http -- https://web.taskjunky.app/mcp

Claude Code will walk you through the OAuth flow — sign in with your TaskJunky account and approve access. No API key needed.

Manual configuration

OAuth (HTTP transport)

Add to .mcp.json in your project root or ~/.claude/settings.json for global access:

.mcp.json
{
  "mcpServers": {
    "taskjunky": {
      "type": "url",
      "url": "https://web.taskjunky.app/mcp"
    }
  }
}

Claude Code will handle OAuth automatically — prompting you to sign in on first use.

Verify it works

After configuring, restart Claude Code and run:

/mcp

You should see taskjunky listed as a connected server. Then ask Claude to call get_context — it should return your rules, projects, and lists. On resumed sessions, Claude should call get_context again before taking new actions.

Add this to your project's CLAUDE.md to tell Claude how to use TaskJunky:

## Task Management

Always call `get_context` at the start of every new session and whenever resuming a previous session before taking new actions. Follow all rules returned.
Before starting work, create tasks to track what you're doing. Mark tasks in_progress
when starting and done when complete.

On this page