MCP server
Connect to Mowa over MCP
Mowa is the system of record for AI behavior: versioned prompts, typed interfaces, datasets, and usage. This MCP server exposes that substrate to any MCP client, scoped to one workspace you pick during authorization.
Endpoint
Paste this URL into your MCP client. Both routes serve the same streamable HTTP server:
https://mowa.dev/mcp https://mowa.dev/api/mcp
Client config
{
"mcpServers": {
"mowa": {
"url": "https://mowa.dev/mcp"
}
}
}
What OAuth will ask
- Your client registers itself and opens a browser window.
- You sign in to Mowa if you are not already signed in.
- You pick which workspace the connection acts as. Every tool call is scoped to that workspace with your own membership role.
Tools
| list_prompts | List every prompt in the workspace |
| get_prompt | One prompt with versions, inputs, outputs |
| create_prompt | Create a prompt and enqueue interface analysis |
| create_prompt_version | Add a draft version to a prompt |
| publish_version | Publish a version live (owner or admin) |
| list_datasets | List every dataset with row counts |
| get_dataset | Columns plus a paginated row sample |
| add_dataset_row | Append one validated row |
| generate_dataset_rows | Enqueue AI row generation, returns a job id |
| get_job_status | Poll analysis or generation jobs |
| get_ai_usage | 30 day workspace AI usage aggregates |
| get_billing | Plan and usage report, optional Pro checkout URL |
| help | Guide to Mowa, every tool, and the workspace plan |