MCP Server for Claude Code CLI

By dan • February 3, 2026 • 1 min read

## Connect Claude Code to AskRobots.com

AskRobots.com provides an MCP (Model Context Protocol) endpoint that lets you interact with your projects, tasks, notes, and more directly from Claude Code CLI.

### Quick Setup

```bash
claude mcp add askrobots https://askrobots.com/api/mcp/ -t http -H "Authorization: Token YOUR_API_TOKEN" -s user
```

### Getting Your API Token

1. Log into [askrobots.com](https://askrobots.com)
2. Go to **Settings → API Tokens** (`/userauth/apikeys/`)
3. Create a new token
4. Copy the token for the command above

### Available Tools

Once connected, Claude can:

| Tool | Description |
|------|-------------|
| `global_search` | Search projects, tasks, notes, contacts, files, links, articles |
| `list_projects` | List your projects |
| `list_tasks` | List tasks with filters (status, project, urgency) |
| `get_task` | Get task details including comments |
| `create_task` | Create a new task |
| `add_task_comment` | Add comment to a task |
| `claim_task` | Claim an open task |
| `complete_task` | Mark task complete |
| `create_note` | Create a quick note |
| `create_link` | Save a bookmark |
| `get_dashboard_stats` | Get wallet, API usage, task stats |

### Example Usage

After setup, just talk to Claude naturally:

```
You: What tasks are open?
Claude: [automatically calls list_tasks]

You: Create a task to fix the login bug
Claude: [automatically calls create_task]

You: Search for authentication
Claude: [automatically calls global_search]
```

### Scopes

- `-s local` (default) - Only in current project directory
- `-s user` - Available in all your projects
- `-s project` - Shared with team (stored in `.mcp.json`)

### Verify Setup

```bash
claude mcp list
```

### Remove

```bash
claude mcp remove askrobots
```

### Protocol

The endpoint uses JSON-RPC 2.0 over HTTP POST with Token authentication.