io.github.mila-gg/mcp-server
Official23 toolsMila
Create and manage documents, spreadsheets, and presentations from your AI assistant.
Create and manage documents, spreadsheets, and presentations from AI assistants.
Captured live from the server via tools/list.
list_servers
List all workspaces (servers) you have access to.
No parameters.
list_documents
List all documents (docs, word, notes, pages). Use this when asked to list, find, or search documents, notes, drafts, or written content. Supports pagination, sorting, and filtering by workspace.
Parameters (5)
- limitnumber
Max results (1-100, default 50)
- offsetnumber
Pagination offset (default 0)
- sortstring
Sort field
- orderstring
Sort order
- server_idany
Filter by server ID, or "personal"
get_document
Get a document (doc, word, note, page) by ID, including its full content (title, HTML body, metadata).
Parameters (1)
- idstringrequired
Document ID
create_document
Create a new document. Use this when asked to create, write, draft, or compose a document, doc, note, page, article, or word document. Content should be HTML (e.g. "<p>Hello</p>").
Parameters (3)
- titlestringrequired
Document title
- contentstring
HTML content of the document
- server_idstring
Server ID to create in (omit for personal)
update_document
Update an existing document (doc, word, note). Supply a new title and/or HTML content to replace the body.
Parameters (3)
- idstringrequired
Document ID
- titlestring
New title
- contentstring
New HTML content (replaces entire document body)
delete_document
Permanently delete a document (doc, word, note) by ID.
Parameters (1)
- idstringrequired
Document ID
append_to_document
Append HTML content to the end of an existing document (doc, word, note) without replacing existing content.
Parameters (2)
- idstringrequired
Document ID
- contentstringrequired
HTML content to append
list_sheets
List all spreadsheets (sheets, excel, workbooks) with their tab metadata (no cell data). Use this when asked to list, find, or search spreadsheets, workbooks, tables, or tabular data.
Parameters (5)
- limitnumber
Max results (1-100, default 50)
- offsetnumber
Pagination offset
- sortstring
Sort field
- orderstring
Sort order
- server_idany
Filter by server ID
get_sheet
Get a spreadsheet (sheet, excel, workbook) by ID, including all tabs and their cell data in A1 notation.
Parameters (1)
- idstringrequired
Sheet (workbook) ID
create_sheet
Create a new spreadsheet (sheet, excel, workbook) with an initial tab. Use this when asked to create a spreadsheet, table, workbook, tracker, or organize data in rows and columns.
Parameters (6)
- titlestringrequired
Workbook title
- tab_namestring
Name of the first tab (default "Sheet 1")
- rowsnumber
Number of rows (default 100)
- columnsnumber
Number of columns (default 26)
- cellsobject
Initial cell data in A1 notation. Each cell is an object with: value (string|number), and optional format: { bold, italic, underline (booleans), color (text hex e.g. "#FF0000"), bgColor (background hex), fontSize (number), fontFamily (string), align ("left"|"center"|"right"), numberFormat ("currency"|"percentage"|"number"|"date"), decimals (number), currencySymbol (string) }. Example: {"A1": {"value": "Name", "format": {"bold": true, "bgColor": "#1B3A5C", "color": "#FFFFFF"}}}
- server_idstring
Server ID
update_sheet
Update spreadsheet (sheet, excel, workbook) workbook-level properties (currently only title).
Parameters (2)
- idstringrequired
Sheet (workbook) ID
- titlestringrequired
New title
delete_sheet
Permanently delete a spreadsheet (sheet, excel, workbook) and all its tabs.
Parameters (1)
- idstringrequired
Sheet (workbook) ID
get_sheet_tab
Get a single tab from a spreadsheet (sheet, excel, workbook), including all cell data in A1 notation.
Parameters (2)
- sheet_idstringrequired
Sheet (workbook) ID
- tab_idstringrequired
Tab ID
create_sheet_tab
Add a new tab to a spreadsheet (sheet, excel, workbook).
Parameters (5)
- sheet_idstringrequired
Sheet (workbook) ID
- namestring
Tab name
- rowsnumber
Number of rows
- columnsnumber
Number of columns
- cellsobject
Initial cells in A1 notation. Each cell: { value, format?: { bold, italic, underline, color (text hex), bgColor (background hex), fontSize, fontFamily, align, numberFormat, decimals, currencySymbol } }
update_sheet_tab
Update a spreadsheet (sheet, excel, workbook) tab: merge cells, rename, change color, or resize the grid. Set a cell value to null to clear it.
Parameters (7)
- sheet_idstringrequired
Sheet (workbook) ID
- tab_idstringrequired
Tab ID
- namestring
New tab name
- colorstring
Tab color
- rowsnumber
New row count
- columnsnumber
New column count
- cellsobject
Cells to update in A1 notation (null clears a cell). Each cell is an object with: value (string|number), and optional format: { bold, italic, underline (booleans), color (text hex e.g. "#FF0000"), bgColor (background hex), fontSize (number), fontFamily (string), align ("left"|"center"|"right"), numberFormat ("currency"|"percentage"|"number"|"date"), decimals (number), currencySymbol (string) }. Example: {"A1": {"value": "Revenue", "format": {"bold": true, "bgColor": "#1B3A5C", "color": "#FFFFFF"}}}
delete_sheet_tab
Delete a tab from a spreadsheet (sheet, excel, workbook). Cannot delete the last remaining tab.
Parameters (2)
- sheet_idstringrequired
Sheet (workbook) ID
- tab_idstringrequired
Tab ID
append_rows
Append one or more rows of data to a spreadsheet (sheet, excel, workbook) tab. Use "rows" for multiple rows or "values" for a single row.
Parameters (4)
- sheet_idstringrequired
Sheet (workbook) ID
- tab_idstringrequired
Tab ID
- rowsarray
Multiple rows. Each row is an array of values or an object keyed by column letter, e.g. [["Alice", 30], ["Bob", 25]] or [{"A": "Alice", "B": 30}]
- valuesany
Single row as an array or column-letter object, e.g. ["Alice", 30] or {"A": "Alice", "B": 30}
list_slides
List all slide presentations (slides, powerpoint, deck, keynote). Use this when asked to list, find, or search presentations, decks, or slideshows.
Parameters (5)
- limitnumber
Max results (1-100, default 50)
- offsetnumber
Pagination offset
- sortstring
Sort field
- orderstring
Sort order
- server_idany
Filter by server ID
get_slide_presentation
Get a slide presentation (slides, powerpoint, deck, keynote) by ID, including all slide data.
Parameters (1)
- idstringrequired
Presentation ID
create_slide_presentation
Create a new slide presentation (slides, powerpoint, deck, keynote). Use this when asked to create a presentation, slide deck, or slideshow. Each slide has "html" content and optional "background" and "notes".
Parameters (5)
- titlestringrequired
Presentation title
- dataarray
Array of slide objects
- themestring
Theme name (default "default")
- aspectRatiostring
Aspect ratio (default "16:9")
- server_idstring
Server ID
update_slide_presentation
Update a slide presentation (slides, powerpoint, deck, keynote): title, slide data, theme, or aspect ratio.
Parameters (5)
- idstringrequired
Presentation ID
- titlestring
New title
- dataarray
Full replacement array of slide objects
- themestring
New theme
- aspectRatiostring
New aspect ratio
delete_slide_presentation
Permanently delete a slide presentation (slides, powerpoint, deck, keynote).
Parameters (1)
- idstringrequired
Presentation ID
append_slides
Append one or more slides to an existing presentation (slides, powerpoint, deck, keynote).
Parameters (4)
- idstringrequired
Presentation ID
- slidesarray
Array of slides to append
- slideobject
Single slide to append
- positionnumber
0-based position to insert at (appends to end if omitted)
README not available yet.
Install
claude_desktop_config.json
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.mila.gg/"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.