MCP Servers Connection
Connect your agent with Tools provided by MCP (Model Context Protocol) servers.
MCP is an open source standard designed by Anthropic, to connect your agents to data sources, such as your application database or external APIs.
Thanks to this protocol you can make tools exposed by an external server available to your agent.
Companies can build servers to allow developers to connect Agents to their platforms. Here are a couple of directories with available MCP servers:
MCP official GitHub - https://github.com/modelcontextprotocol/servers
MCP-GET registry - https://mcp-get.com/
Once you have one or more MCP server on your machine, you can make their resousìrces available to your agent.
You should create an McpConnector
instance for each MCP server you want to interact to.
Neuron automatically discovers the tools exposed by the server and connects them to your agent.
When the agent decides to run a tool, Neuron will generate the appropriate request to call the tool on the MCP servers and return the result to the LLM to continue the task. It feels exactly like with your own defined tools, but you can access a huge archive of predefined actions your agent can perform with just one line of code.
You can check the agent running every step using the Inspector monitoring dashboard:
Learn more about observability in the Observability section.
Last updated