Back to Docs

Pix3lMCP: Advanced Usage and Tool Reference

This page covers all available tool parameters in detail and provides real workflow examples for managing Pix3lBoard directly from Claude Code.

For installation and setup, see the Pix3lMCP guide.


Tool Parameter Reference

Workspaces

list_workspaces

List all accessible workspaces.

ParameterTypeRequiredDescription
(none)

Boards

list_boards

ParameterTypeRequiredDescription
workspace_idstringWorkspace ID

get_board

ParameterTypeRequiredDescription
board_idstringBoard ID

Returns the board with all lists and cards.

create_board

ParameterTypeRequiredDescription
workspace_idstringWorkspace ID
namestringBoard name
descriptionstringBoard description

update_board

ParameterTypeRequiredDescription
board_idstringBoard ID
namestringNew name
descriptionstringNew description

delete_board

ParameterTypeRequiredDescription
board_idstringBoard ID

Lists

list_lists

ParameterTypeRequiredDescription
board_idstringBoard ID

create_list

ParameterTypeRequiredDescription
board_idstringBoard ID
namestringList name
positionnumberPosition (auto if omitted)

update_list

ParameterTypeRequiredDescription
list_idstringList ID
namestringNew name
positionnumberNew position

delete_list

ParameterTypeRequiredDescription
list_idstringList ID

Cards

list_cards

ParameterTypeRequiredDescription
board_idstringBoard ID

get_card

ParameterTypeRequiredDescription
card_idstringCard ID

Returns full card with comments and attachments.

create_card

ParameterTypeRequiredDescription
list_idstringTarget list ID
titlestringCard title
descriptionstringCard description (Markdown)
typestringtask, bug, feature, meeting, text, image, music, video, audio (always lowercase)
prioritystringlow, medium, high, urgent
severitystringlow, medium, high, critical
effortstringsmall, medium, large, xlarge
tagsstring[]Array of tag strings
due_datestringISO 8601 date (YYYY-MM-DD)
responsiblestringAssignee name
promptstringAI prompt text
ai_toolstringAI tool used (e.g. Midjourney, Suno)
job_numberstringJob reference (e.g. C-26-0001)
ratingnumber1–5 stars
linksstring[]Array of URLs
checklistobject[][{"id":"1","text":"Step","checked":false}]

update_card

Same parameters as create_card, but list_id and title are optional. Omitted fields are not changed.

move_card

ParameterTypeRequiredDescription
card_idstringCard ID
list_idstringTarget list ID
positionnumberTarget position (0 = top)

archive_card

ParameterTypeRequiredDescription
card_idstringCard ID

delete_card

ParameterTypeRequiredDescription
card_idstringCard ID

Workflow Examples

Set up a new project board

“Create a new board called ‘Website Redesign’ in my workspace, then add three lists: Backlog, In Progress, and Done.”

Claude will:

  1. Call list_workspaces to find your workspace ID
  2. Call create_board with name “Website Redesign”
  3. Call create_list three times for each column

Add a batch of AI generation tasks

“In the ‘Midjourney’ board, add 5 cards to the Backlog list for these prompts: [your list of prompts]. Set type to ‘image’ and ai_tool to ‘Midjourney’.”

Claude will call create_card for each item, setting type: "image" and ai_tool: "Midjourney" on each.


Review and rate completed work

“List all cards in the Done list of board ‘Project X’. For each one, show me the prompt and current rating.”

Claude will:

  1. Call get_board to find the lists
  2. Call list_cards filtering by the Done list
  3. Display the prompt and rating fields for each card

Move cards between lists

“Move all cards tagged ‘urgent’ from Backlog to In Progress.”

Claude will:

  1. Call list_cards to find matching cards
  2. Call move_card for each one targeting the In Progress list

Archive completed cards

“Archive all cards in the Done list that have a rating of 4 or 5 stars.”

Claude will list the cards, filter by rating, and call archive_card for each matching card.


Track a music generation session

“Create a card for a Suno track: title ‘Lo-fi study beats’, type music, prompt ‘calm lo-fi hip hop, piano, light rain, 85bpm’, ai_tool Suno, rating 4.”

create_card:
  list_id: <your list>
  title: "Lo-fi study beats"
  type: "music"
  prompt: "calm lo-fi hip hop, piano, light rain, 85bpm"
  ai_tool: "Suno"
  rating: 4

Tips