diff --git a/apps/rowboat/app/projects/[projectId]/entities/tool_config.tsx b/apps/rowboat/app/projects/[projectId]/entities/tool_config.tsx index dbc7685d..ed677073 100644 --- a/apps/rowboat/app/projects/[projectId]/entities/tool_config.tsx +++ b/apps/rowboat/app/projects/[projectId]/entities/tool_config.tsx @@ -364,56 +364,6 @@ export function ToolConfig({ Changes saved ✓ )} - {/* Tool Type Section */} - {!tool.isLibrary &&
-
-
- {tool.isMcp ? ( - - ) : tool.isComposio ? ( - - ) : ( - - )} -
-
-

- How this tool runs -

- {tool.isMcp &&
-

This tool is powered by the {tool.mcpServerName} MCP server.

-

- MCP (Model Context Protocol) tools are external services that provide additional capabilities to your agent. -

-
} - { tool.isComposio &&
-
-

This tool is powered by Composio

- {tool.composioData?.toolkitName && ( - - {tool.composioData.toolkitName} - - )} -
-

- Composio provides pre-built integrations with popular services and APIs. -

-
} - { tool.isWebhook &&
-
-

This tool is invoked using the webhook configured in project settings

-
-

- Webhook tools make HTTP requests to your configured endpoint when called by the agent. -

-
} - { !tool.isMcp && !tool.isComposio && !tool.isWebhook &&
-

This is a placeholder tool that should be mocked.

-
} -
-
-
} - {/* Identity Section */} } @@ -570,6 +520,47 @@ export function ToolConfig({ )} + + {/* Tool Type Section */} + {!tool.isLibrary &&
+
+
+ {tool.isMcp ? ( + + ) : tool.isComposio ? ( + + ) : ( + + )} +
+
+

+ How this tool runs +

+ {tool.isMcp &&
+

This tool is powered by the {tool.mcpServerName} MCP server.

+
} + { tool.isComposio &&
+
+

This tool is powered by Composio

+ {tool.composioData?.toolkitName && ( + + {tool.composioData.toolkitName} + + )} +
+
} + { tool.isWebhook &&
+
+

This tool is invoked using the webhook configured in project settings

+
+
} + { !tool.isMcp && !tool.isComposio && !tool.isWebhook &&
+

This is a placeholder tool that should be mocked.

+
} +
+
+
} );