Registering an MCP server
Register an MCP server in Agent Studios.
- Validates the MCP server setup.
- Identifies available tools by reflecting on the server.
- Catalogs these tools for subsequent use within workflows.
Register an MCP server in Agent Studios.
{
"mcpServers": {
"<ServerName>": {
"command": "<runtime>",
"args": ["<package-name>"],
"env": {
"VARIABLE_NAME": "value"
}
}
}
}
{
"mcpServers": {
"DuckDuckGo": {
"command": "uvx",
"args": ["duckduckgo-mcp-server"]
}
}
}
{
"mcpServers": {
"Puppeteer": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"]
}
}
}
{
"mcpServers": {
"awslabs.amazon-sns-sqs-mcp-server": {
"command": "uvx",
"args": ["awslabs.amazon-sns-sqs-mcp-server@latest"],
"env": {
"AWS_PROFILE": "your-aws-profile",
"AWS_REGION": "us-east-1"
}
}
}
}
{
"mcpServers": {
"DatabaseMCP": {
"command": "uvx",
"args": ["database-mcp-server"],
"env": {
"DATABASE_URL": "postgresql://user:password@host:port/database",
"API_KEY": "your-api-key-here"
}
}
}
}
