Building an Agent
MCP Integration
from ncp import Agent, MCPConfig
filesystem_server = MCPConfig(
transport_type="stdio",
command="mcp-server-filesystem /path/to/files"
)
agent = Agent(
name="MultiServiceAgent",
description="Agent with MCP integrations",
instructions="...",
tools=[...],
mcp_servers=[filesystem_server]
)Data Connector Integration
Dependency Management
Last updated
