π¦ ClawHub
mila
by @freddyjd
Create, read, update, and delete documents, spreadsheets, and slide presentations in Mila via the REST API or MCP tools. Use when the user wants to manage co...
π‘ Examples
Create a document
curl -X POST https://api.mila.gg/v1/documents \
-H "Authorization: Bearer mila_sk_your_key_here" \
-H "Content-Type: application/json" \
-d '{"title": "Meeting Notes", "content": "Meeting Notes
Discussed roadmap.
"}'
MCP tool: create_document with title and content (HTML string).
Create a spreadsheet
curl -X POST https://api.mila.gg/v1/sheets \
-H "Authorization: Bearer mila_sk_your_key_here" \
-H "Content-Type: application/json" \
-d '{"title": "Budget", "cells": {"A1": {"value": "Item"}, "B1": {"value": "Cost"}, "A2": {"value": "Hosting"}, "B2": {"value": 99}}}'
MCP tool: create_sheet with title and cells (A1 notation object).
Create a presentation
curl -X POST https://api.mila.gg/v1/slides \
-H "Authorization: Bearer mila_sk_your_key_here" \
-H "Content-Type: application/json" \
-d '{"title": "Demo", "data": [{"html": "Hello
", "background": "#ffffff", "notes": "Title slide"}]}'
MCP tool: create_slide_presentation with title and data (array of slide objects).
TERMINAL
clawhub install mila