INDIVIDUAL MCP TOOL
create_board
Create a new KanbanThing board and return its id, shareable URL and password.
LIVE ENDPOINT
https://www.kanbanthing.com/mcp
Connect to this endpoint to inspect the live schema for create_board and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description contains a write-action term.
- A tool name, description or schema mentions credentials.
- A tool name or description suggests retrieving external content.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.kanbanthing]
url = "https://www.kanbanthing.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"kanbanthing": {
"type": "http",
"url": "https://www.kanbanthing.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: kanbanthing
Remote MCP URL: https://www.kanbanthing.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"kanbanthing": {
"url": "https://www.kanbanthing.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"kanbanthing": {
"type": "http",
"url": "https://www.kanbanthing.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "kanbanthing",
"transport": "streamable-http",
"url": "https://www.kanbanthing.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
get_board— Read a board by id: its name, expiry, columns and how many cards each column holds.list_columns— List the columns on a board, left to right, with their ids.list_cards— List the cards on a board, optionally only those in one column.create_card— Add a card to a column on a board.move_card— Move a card to another column on the same board, at the end of that column.update_card— Change a card title, description, due date or colour.delete_card— Permanently delete a card from a board.