← kanbanthing.com
INDIVIDUAL MCP TOOL
move_card
Move a card to another column on the same board, at the end of that column.
LIVE ENDPOINT
https://www.kanbanthing.com/mcp
Connect to this endpoint to inspect the live schema for move_card and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Inferred read-only · medium confidence · heuristic, not a guarantee.
- No write-capable action terms were found; this is not proof that invocation has no side effects.
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
create_board— Create a new KanbanThing board and return its id, shareable URL and password.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.update_card— Change a card title, description, due date or colour.delete_card— Permanently delete a card from a board.