# Mila (remote · mcp.mila.gg)

Create and manage documents, spreadsheets, and presentations from your AI assistant.

- Trust score: 67/100 (medium)
- Change this week: +6
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-04

## Components

- remote · `mcp.mila.gg`: 67/100 (this document), [markdown](https://verifymcp.io/servers/mila-gg-mcp-server/mcp.md), [page](https://verifymcp.io/servers/mila-gg-mcp-server/mcp)

## Channel facts

- Endpoint: `https://mcp.mila.gg/`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.2`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-04.

- **Endpoint Security**: 57/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 23 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 2004 tokens (~87/item across 23 items; 23 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 30/100
  - Stability observed for 9 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http mila-gg-mcp-server https://mcp.mila.gg/
```

### Codex

```toml
[mcp_servers.mila-gg-mcp-server]
url = "https://mcp.mila.gg/"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "mila-gg-mcp-server": {
      "type": "remote",
      "url": "https://mcp.mila.gg/",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add mila-gg-mcp-server --url https://mcp.mila.gg/ --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  mila-gg-mcp-server:
    url: "https://mcp.mila.gg/"
```

### Other

```json
{
  "mcpServers": {
    "mila-gg-mcp-server": {
      "type": "http",
      "url": "https://mcp.mila.gg/"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-04 (score 67, +1)

No change was recorded against any check on this day. Stability & Change Management went from 27 to 30. That category is still filling its 30-day observation window: 8 days of observed history at the previous scan, 9 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-03 (score 66, +5)

- [security improvement] HTTPS: unverified → pass

### 2026-08-01 (score 61, +1)

No change was recorded against any check on this day. Stability & Change Management went from 17 to 20. That category is still filling its 30-day observation window: 5 days of observed history at the previous scan, 6 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 60, −2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 62, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 61, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 60, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 59)

First indexed and scored.

## MCP tools (23)

### `list_servers` (~20 tokens)

List all workspaces (servers) you have access to.

### `list_documents` (~113 tokens)

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.

Input parameters:

- `limit` (number): Max results (1-100, default 50)
- `offset` (number): Pagination offset (default 0)
- `order` (string): Sort order
- `server_id`: Filter by server ID, or "personal"
- `sort` (string): Sort field

### `get_document` (~44 tokens)

Get a document (doc, word, note, page) by ID, including its full content (title, HTML body, metadata).

Input parameters:

- `id` (string, required): Document ID

### `create_document` (~94 tokens)

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>").

Input parameters:

- `content` (string): HTML content of the document
- `server_id` (string): Server ID to create in (omit for personal)
- `title` (string, required): Document title

### `update_document` (~66 tokens)

Update an existing document (doc, word, note). Supply a new title and/or HTML content to replace the body.

Input parameters:

- `content` (string): New HTML content (replaces entire document body)
- `id` (string, required): Document ID
- `title` (string): New title

### `delete_document` (~32 tokens)

Permanently delete a document (doc, word, note) by ID.

Input parameters:

- `id` (string, required): Document ID

### `append_to_document` (~51 tokens)

Append HTML content to the end of an existing document (doc, word, note) without replacing existing content.

Input parameters:

- `content` (string, required): HTML content to append
- `id` (string, required): Document ID

### `list_sheets` (~107 tokens)

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.

Input parameters:

- `limit` (number): Max results (1-100, default 50)
- `offset` (number): Pagination offset
- `order` (string): Sort order
- `server_id`: Filter by server ID
- `sort` (string): Sort field

### `get_sheet` (~46 tokens)

Get a spreadsheet (sheet, excel, workbook) by ID, including all tabs and their cell data in A1 notation.

Input parameters:

- `id` (string, required): Sheet (workbook) ID

### `create_sheet` (~256 tokens)

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.

Input parameters:

- `cells` (object): 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 h…
- `columns` (number): Number of columns (default 26)
- `rows` (number): Number of rows (default 100)
- `server_id` (string): Server ID
- `tab_name` (string): Name of the first tab (default "Sheet 1")
- `title` (string, required): Workbook title

### `update_sheet` (~47 tokens)

Update spreadsheet (sheet, excel, workbook) workbook-level properties (currently only title).

Input parameters:

- `id` (string, required): Sheet (workbook) ID
- `title` (string, required): New title

### `delete_sheet` (~38 tokens)

Permanently delete a spreadsheet (sheet, excel, workbook) and all its tabs.

Input parameters:

- `id` (string, required): Sheet (workbook) ID

### `get_sheet_tab` (~56 tokens)

Get a single tab from a spreadsheet (sheet, excel, workbook), including all cell data in A1 notation.

Input parameters:

- `sheet_id` (string, required): Sheet (workbook) ID
- `tab_id` (string, required): Tab ID

### `create_sheet_tab` (~122 tokens)

Add a new tab to a spreadsheet (sheet, excel, workbook).

Input parameters:

- `cells` (object): Initial cells in A1 notation. Each cell: { value, format?: { bold, italic, underline, color (text hex), bgColor (background hex), fontSize, fontFamily, align, numberFormat, decimals, currencySymbol }…
- `columns` (number): Number of columns
- `name` (string): Tab name
- `rows` (number): Number of rows
- `sheet_id` (string, required): Sheet (workbook) ID

### `update_sheet_tab` (~255 tokens)

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.

Input parameters:

- `cells` (object): 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"), bg…
- `color` (string): Tab color
- `columns` (number): New column count
- `name` (string): New tab name
- `rows` (number): New row count
- `sheet_id` (string, required): Sheet (workbook) ID
- `tab_id` (string, required): Tab ID

### `delete_sheet_tab` (~53 tokens)

Delete a tab from a spreadsheet (sheet, excel, workbook). Cannot delete the last remaining tab.

Input parameters:

- `sheet_id` (string, required): Sheet (workbook) ID
- `tab_id` (string, required): Tab ID

### `append_rows` (~155 tokens)

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.

Input parameters:

- `rows` (array): 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}]
- `sheet_id` (string, required): Sheet (workbook) ID
- `tab_id` (string, required): Tab ID
- `values`: Single row as an array or column-letter object, e.g. ["Alice", 30] or {"A": "Alice", "B": 30}

### `list_slides` (~96 tokens)

List all slide presentations (slides, powerpoint, deck, keynote). Use this when asked to list, find, or search presentations, decks, or slideshows.

Input parameters:

- `limit` (number): Max results (1-100, default 50)
- `offset` (number): Pagination offset
- `order` (string): Sort order
- `server_id`: Filter by server ID
- `sort` (string): Sort field

### `get_slide_presentation` (~40 tokens)

Get a slide presentation (slides, powerpoint, deck, keynote) by ID, including all slide data.

Input parameters:

- `id` (string, required): Presentation ID

### `create_slide_presentation` (~114 tokens)

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".

Input parameters:

- `aspectRatio` (string): Aspect ratio (default "16:9")
- `data` (array): Array of slide objects
- `server_id` (string): Server ID
- `theme` (string): Theme name (default "default")
- `title` (string, required): Presentation title

### `update_slide_presentation` (~85 tokens)

Update a slide presentation (slides, powerpoint, deck, keynote): title, slide data, theme, or aspect ratio.

Input parameters:

- `aspectRatio` (string): New aspect ratio
- `data` (array): Full replacement array of slide objects
- `id` (string, required): Presentation ID
- `theme` (string): New theme
- `title` (string): New title

### `delete_slide_presentation` (~34 tokens)

Permanently delete a slide presentation (slides, powerpoint, deck, keynote).

Input parameters:

- `id` (string, required): Presentation ID

### `append_slides` (~80 tokens)

Append one or more slides to an existing presentation (slides, powerpoint, deck, keynote).

Input parameters:

- `id` (string, required): Presentation ID
- `position` (number): 0-based position to insert at (appends to end if omitted)
- `slide` (object): Single slide to append
- `slides` (array): Array of slides to append

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/mila-gg-mcp-server/mcp#diagnostics

## Score history

- 2026-08-04: 67
- 2026-08-03: 66
- 2026-08-02: 61
- 2026-08-01: 61
- 2026-07-31: 60
- 2026-07-30: 62
- 2026-07-29: 61
- 2026-07-28: 61
- 2026-07-27: 60
- 2026-07-26: 59

## Links

- Remote endpoint: https://mcp.mila.gg/
- Repository: https://github.com/mila-gg/mcp-server
- Website: https://mila.gg/
- Changelog RSS feed: https://verifymcp.io/servers/mila-gg-mcp-server/mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/mila-gg-mcp-server/mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/mila-gg-mcp-server/mcp
