Connect Dump to ChatGPT, Claude, and your AI assistant
The Dump MCP server lets AI assistants read your shared project boards, search your notes, and create new content through a secure OAuth connection.
Available tools
Read
- list_boards — List all your boards with names, slugs, and item counts
- get_board — Read the full content of a board as markdown
- search_boards — Search boards by name
- search_items — Search notes, links, and checklists across boards
- get_item — Get a specific item by its ID
Write
- create_note — Create a new note, link, or checklist on a board
- add_items — Quickly add multiple items to a board in one call
- update_note — Update an existing note's content or title
- toggle_checklist_item — Toggle a checklist item's checked state
Usage examples
Try these prompts with your AI assistant after connecting Dump:
“List all my Dump boards and tell me which one has the most items.”
Uses list_boards to show an overview of all your boards.
“Search my boards for anything related to 'project roadmap' and summarize what you find.”
Uses search_items across all boards and synthesizes the results.
“Read my 'Weekly Tasks' board and create a summary of what's done vs. still open.”
Uses get_board to read content, then analyzes checklist completion.
“Add a checklist called 'Launch Prep' to my board with slug 'a1b2c3' with items: update docs, run tests, notify team.”
Uses create_note with type 'checklist' to create a new checklist.
“Check off 'update docs' on my Launch Prep checklist.”
Uses get_board to find the item, then toggle_checklist_item to check it.
ClaudeAdd Dump as an MCP integration in Claude's web interface.
Add Dump as an MCP integration in Claude's web interface.
- 1.Go to Settings → Integrations in Claude
- 2.Click Add More and paste the server URL:
https://www.dump.page/api/mcp
Claude will open a browser window to authorize with your Dump account via Google sign-in.
ChatGPTConnect Dump as an MCP connector in ChatGPT.
Connect Dump as an MCP connector in ChatGPT.
- 1.Go to Settings → Connectors in ChatGPT
- 2.Click Add connector and paste the server URL:
https://www.dump.page/api/mcp
ChatGPT will redirect you to authorize with your Dump account. Once connected, Dump tools will appear in your conversations.
Claude CodeAdd the Dump MCP server to Claude Code's configuration.
Add the Dump MCP server to Claude Code's configuration.
- 1.Run the following command in your terminal:
claude mcp add dump-mcp --transport http https://www.dump.page/api/mcp
Claude Code will prompt you to authorize in your browser on first use. Your boards will then be accessible as tools.
CodexAdd the Dump MCP server to Codex's configuration.
Add the Dump MCP server to Codex's configuration.
- 1.Add the following to your
.codex/config.json:
{
"mcpServers": {
"dump-mcp": {
"type": "http",
"url": "https://www.dump.page/api/mcp"
}
}
}Codex will prompt you to authorize on first use. Once connected, you can ask Codex to read and update your Dump boards.
