test-apim-proxy-mcp-server
v0.0.16
Published
MCP server for interacting with Workato APIM
Downloads
24
Readme
Workato APIM MCP
A local mcp server that connects your Claude Desktop or Cursor to Workato's apim services.
What does this do?
This tool allows you to call your active APIM collections directly from AI tools like Claude Desktop and Cursor.
How to use it
First, you'll need:
COLLECTION: Your APIM collection path (format: username/collection-name). The collection must be activated, and all recipes for this collection API endpoints must be running.API_TOKEN: Your access token from the APIM client that has permission to use this collectionREMOTE_MCP_SERVER_URL: should behttps://mcp-adapter.awstf.workato.com, do not change it
Add this configuration to your Claude Desktop config file:
{
"mcpServers": {
"workato-mcp-server": {
"command": "npx",
"args": ["test-apim-proxy-mcp-server"],
"env": {
"COLLECTION": "your-username/your-collection-name",
"API_TOKEN": "your-api-token",
"REMOTE_MCP_SERVER_URL": "https://mcp-adapter.awstf.workato.com"
}
}
}
}