The t0ggles MCP (Model Context Protocol) Server enables AI assistants to interact with your boards, projects, tasks, and notes. Connect your favorite AI-powered development tools to manage your work directly through natural language conversations.
Get up and running with t0ggles MCP in three simple steps:
💡 Tip: Learn more about token management in the MCP Tokens documentation.
Add the t0ggles MCP server to your AI tool's configuration. See the Integration Guides section for specific tools.
Once configured, you can interact with t0ggles using natural language:
"Show me all my t0ggles boards""Create a high-priority task 'Review API changes' in the Backend project""What tasks are assigned to me in the Marketing board?"
The MCP server provides 17 tools organized by functionality:
list-boards - List all boards you have access to, returning board IDs, URLs, titles, and imagesget-board - Get detailed information about a specific board including tags, properties, and settingslist-projects - List all active (non-archived) projects in a board, including the special "OTHER" projectget-project - Get detailed information about a specific project including AI context, tags, and linkslist-statuses - Get all statuses (Kanban columns) for a board with their colors, types, and orderget-status - Get a single status by ID with its detailslist-users - List all users who have access to a board with their display names and emailslist-tasks - List tasks in a board or project with optional filtering by project, status, or parent taskget-task - Get full details of a specific task including description, comments count, and propertiessearch-tasks - Search tasks by title with optional project filteringget-task-by-url - Get a task by its full URL (supports custom domains)create-task - Create a new task with optional subtasks, custom properties, and automatic task automationsupdate-task - Update an existing task's title, status, priority, assignment, dates, and propertiessearch-notes - Search notes by title in a boardlist-notes - List notes in a board with optional parent folder filteringget-note - Get full note details including Markdown contentget-note-by-url - Get a note by its full URL (supports custom domains)create-note - Create a new note or folder with optional icon and parent folderupdate-note - Update an existing note's title, content, icon, or parent folderCursor has native MCP support. Add t0ggles to your MCP configuration:
Configuration file location: ~/.cursor/mcp.json
{"mcpServers": {"t0ggles": {"url": "https://t0ggles.com/mcp","headers": {"Authorization": "Bearer YOUR_TOKEN_HERE"}}}}
After saving, restart Cursor to load the MCP server.
VS Code has built-in MCP support with GitHub Copilot. Configure it in your user or workspace settings:
Configuration file location: .vscode/mcp.json (workspace) or User Settings
{"inputs": [{"type": "promptString","id": "t0ggles-token","description": "t0ggles MCP Token","password": true}],"servers": {"t0ggles": {"type": "http","url": "https://t0ggles.com/mcp","headers": {"Authorization": "Bearer ${input:t0ggles-token}"}}}}
VS Code will prompt you for the token when the server first connects. Learn more at VS Code MCP documentation.
For Claude Code, use the CLI to add the t0ggles MCP server:
claude mcp add --transport http t0ggles https://t0ggles.com/mcp \--header "Authorization: Bearer YOUR_TOKEN_HERE"
Learn more at Claude Code MCP documentation.
For OpenAI Codex, use the CLI to add the t0ggles MCP server:
codex mcp add t0ggles -- curl -H "Authorization: Bearer YOUR_TOKEN_HERE" https://t0ggles.com/mcp
Or configure in your config.toml. Learn more at Codex MCP documentation.
Add t0ggles to your Opencode configuration file (opencode.json):
{"$schema": "https://opencode.ai/config.json","mcp": {"t0ggles": {"type": "remote","url": "https://t0ggles.com/mcp","enabled": true,"headers": {"Authorization": "Bearer YOUR_TOKEN_HERE"}}}}
Learn more at Opencode MCP documentation.
Here are practical examples and prompts to help you get the most out of t0ggles MCP integration:
List and organize tasks:
Create tasks:
Update tasks:
Get project context:
Search and find:
Create and organize notes:
Search and retrieve:
Sprint planning:
Bug tracking:
Daily standups:
Batch operations:
"Create the following tasks in the Onboarding project:
- Set up development environment
- Read coding guidelines
- Complete security training
- Meet with team lead"
Context-aware assistance:
POST https://t0ggles.com/mcp - Returns server status and version information.GET https://t0ggles.com/mcp/health - Returns server status and version information.GET https://t0ggles.com/mcp/info - Returns server capabilities and available tools.