This API allows you to create a new MCP server in your organization.
Request description
This API supports two authentication methods. You can use either Session Token authentication OR the combination of API key and linked account ID.
Authentication Option 1: Session Token
Bearer token using your session token for authenticationFormat: Bearer YOUR_SESSION_TOKEN
Authentication Option 2: API Key + Linked Account
The unique identifier for the linked account
Body Parameters
Description of the MCP server
Response description
Unique identifier for the created MCP server
Description of the MCP server
{
"_id": "686e23c7397a76e76449bc14",
"name": "MCP Server Dhananjay",
"description": "This is a Dummy MCP Server"
}
curl -X POST "https://api.gocobalt.io/api/v2/public/mcp-servers" \
-H "Authorization: Bearer YOUR_SESSION_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"name": "Production MCP Server",
"description": "MCP server for production customer integration workflows"
}'