Artboard
MCP Servers

Create an MCP Server

Create a new MCP Server

This endpoint creates a new Model Context Protocol server that can be used to expose FileMaker scripts as tools for AI agents.

POST
/otto/api/mcp-servers

Request Body

application/json

POST /otto/api/mcp-servers Request body

description?string
filename*string
Length1 <= length
is_active?boolean
Defaulttrue
name*string
Length1 <= length <= 100
slug*string
Match^[a-zA-Z0-9-]+$
Length1 <= length <= 50

Response Body

application/json

application/json

curl -X POST "https://your.server.net/otto/api/mcp-servers" \  -H "Content-Type: application/json" \  -d '{    "description": "MCP server for customer management operations",    "filename": "CustomerDB.fmp12",    "is_active": true,    "name": "Customer Management Server",    "slug": "customer-management"  }'
{
  "messages": [
    {
      "code": 0,
      "text": "ok"
    }
  ],
  "response": {}
}
{
  "messages": [
    {
      "code": 18011,
      "text": "OttoFMS sample error"
    }
  ],
  "response": {}
}