ZelaxyDocs
Tool Integrations
Tool

MCP

Connect to Model Context Protocol servers for extended capabilities

MCP (Model Context Protocol)

Connect to any MCP server to extend your Agent's capabilities. MCP provides a standardized protocol for AI tools — connect to databases, file systems, APIs, and custom tools through a unified interface.

Overview

PropertyValue
Typemcp
CategoryTool — Developer
AuthConfiguration-based

Operations

OperationDescription
ConnectConnect to an MCP server
Call ToolExecute a tool from the MCP server
List ToolsDiscover available tools

Configuration

SettingTypeDescription
Server URLShort inputMCP server endpoint
TransportDropdownstdio, sse, streamable-http
CommandShort inputServer command (stdio)
ArgsTableCommand arguments
HeadersTableHTTP headers (SSE)
Environment VariablesTableEnv vars for the server

Outputs

FieldTypeDescription
contentstringTool execution result
toolsjsonAvailable tools list

Example: File System MCP

Workflow:

[Starter] → [Agent] → [Response]

        [MCP: File System] (connected as tool)

Connect the official @modelcontextprotocol/server-filesystem MCP server. The Agent can now read, write, and list files as part of its reasoning.

MCP Config:

  • Transport: stdio
  • Command: npx
  • Args: @modelcontextprotocol/server-filesystem, /path/to/allowed/directory

Tips

  • Stdio — runs a local process (best for local MCP servers)
  • SSE/HTTP — connects to remote MCP servers
  • Any MCP server works — filesystem, database, Slack, custom tools, etc.
  • See the MCP documentation for setup guides