MCP Servers
Learn about creating an MCP server with MindStudio.
What is an MCP Server?
An MCP (Model Context Protocol) server lets you expose one or more of your MindStudio agents as tools that external applications or LLMs can invoke. In practice, an MCP server:
Enables agents to work with external tools and data sources without having to rebuild or redeploy them each time.
Serves as a centralized endpoint that routes requests to any published agent you’ve added.
How to Build an MCP Server with MindStudio
Configure Your Agent as a Packaged Workflow
Open the editor of agent you want to expose and select the Start block.
Change the trigger type to Packaged Workflow.
Fill in Workflow Metadata
FieldExample ValueWorkflow ID/Name
Get AI News Scrape
Description
Get a bullet point summary of today’s AI news.
Inputs
(None—this workflow runs standalone)
Outputs
One output: the summary string
Save and Publish
Click Save to persist your changes.
Click Publish so the workflow is available in the workspace.
Copy Your Agent’s ID
After publishing, the agent’s general settings will show its Agent ID.
Click the copy icon next to that ID
Create the MCP Server
Navigate back to your main MindStudio workspace.
Select MCP Server from the Workspace settings dropdown.
Paste in your copied Agent ID in the space provided.
Tap Add to register this agent on the server.
Copy the connection details snippet to be used with your external integration.
Connection Details Example Snippet
Integrating Your MCP Server with External Tools
Last updated