MCP
MCP
Currently custom tools can be configured using the Model Context Protocol, a standard proposed by Anthropic to unify prompts, context, and tool use.
MCP Servers can be added to hub Assistants using mcpServers
blocks. You can explore available MCP server blocks here.
To set up your own MCP server, read the MCP quickstart and then create an mcpServers
block or add the following to your config file:
- YAML
- JSON
config.yaml
mcpServers:
- name: My MCP Server
command: uvx
args:
- mcp-server-sqlite
- --db-path
- /Users/NAME/test.db
config.json
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "uvx",
"args": ["mcp-server-sqlite", "--db-path", "/Users/NAME/test.db"]
}
}
]
}
}