Claude Code
Allows you to chat with Claude Code and added MCP tools
Type: claudeCode/v1
Actions
Initialize Claude Code
Name: initializeClaude
Performs a no-op probe against the Claude agent so connectivity issues surface early.
Example JSON Structure
{
"label" : "Initialize Claude Code",
"name" : "initializeClaude",
"type" : "claudeCode/v1/initializeClaude"
}Output
Sample Output:
Sample result
Type: STRING
Add MCP Server
Name: addMCP
Builds an HTTP-transport MCP server descriptor that can be passed to the Chat action.
Properties
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| label | Label | STRING | The name of the MCP server | true |
| url | URL | STRING | The URL of the MCP server | true |
| authenticationType | Authentication Type | INTEGER Options0, 1, 2 | The type of authentication to use for connecting to the MCP server | true |
| Authentication | Authentication | STRING | The access token/API key to use for authentication | true |
| Authentication | Authentication | ARRAY Items[{STRING(name), STRING(value)}] | The custom headers to use for authentication | false |
Example JSON Structure
{
"label" : "Add MCP Server",
"name" : "addMCP",
"parameters" : {
"label" : "",
"url" : "",
"authenticationType" : 1,
"Authentication" : [ {
"name" : "",
"value" : ""
} ]
},
"type" : "claudeCode/v1/addMCP"
}Output
Sample Output:
Sample result
Type: STRING
Chat
Name: chat
Chat with Claude with registered tools
Properties
| Name | Label | Type | Description | Required |
|---|---|---|---|---|
| script | Message | STRING | Command to send to Claude | true |
| mcpServers | MCP Servers | ARRAY Items[STRING] | MCP servers (HTTP transport) configured via the 'Add MCP Server' action. | false |
Example JSON Structure
{
"label" : "Chat",
"name" : "chat",
"parameters" : {
"script" : "",
"mcpServers" : [ "" ]
},
"type" : "claudeCode/v1/chat"
}Output
Sample Output:
Sample result
Type: STRING
How is this guide?
Last updated on