# Expose Workato Developer APIs
Workato's Developer API MCP server enables AI-powered developer environments like Claude Desktop and Cursor to programmatically access your Workato workspace. It exposes your Developer APIs through a standard Model Context Protocol (MCP) interface. This enables you to inspect and modify assets, perform bulk operations, and interact with the platform from within your development tools.
Your MCP server acts as a standard API platform user and supports Developer API token authentication. This lets you securely integrate with development environments using the same governance and access controls as the API platform.
# Install Developer API MCP for remote servers
Complete the following steps to install the MCP remote server with a URL:
Open your preferred developer environment, such as Claude Desktop or Cursor.
Locate the MCP configuration settings:
# Install Developer API MCP for local servers
Complete the following steps to install and configure the MCP local server:
Open your preferred developer environment, such as Claude Desktop or Cursor.
Locate the MCP configuration settings:
Update the configuration file to use the following configuration, replacing YOUR_API_TOKEN
with your MCP API token:
{
"mcpServers": {
"workato-dev-api": {
"command": "npx",
"args": [
"mcp-remote",
"https://app.preview.workato.com/sse",
"--transport",
"sse-first",
"--header",
"Authorization:${AUTH_HEADER}"
],
"env": {
"AUTH_HEADER": "Bearer YOUR_API_TOKEN"
}
}
}
}
TOOL AVAILABILITY
The tools and endpoints available depend on the scopes defined in your API token.
Restart your environment in Cursor or Claude Desktop. The server populates tools based on your token’s permissions.
Last updated: 7/16/2025, 8:58:59 PM