Extend your AI agent with external tools and services using Model Context Protocol
STDIO (Standard Input/Output)
Server-Sent Events (SSE)
HTTP
{ "name": "File System", "description": "Access and manage files and directories", "transport_type": "stdio", "command": "uvx", "args": ["@modelcontextprotocol/server-filesystem"], "env_vars": { "ALLOWED_DIRECTORIES": "/path/to/allowed/directory" } }
{ "name": "Git Repository", "description": "Interact with Git repositories", "transport_type": "stdio", "command": "uvx", "args": ["@modelcontextprotocol/server-git"], "env_vars": {} }
{ "name": "Web Search", "description": "Search the web using Brave Search API", "transport_type": "stdio", "command": "uvx", "args": ["@modelcontextprotocol/server-brave-search"], "env_vars": { "BRAVE_API_KEY": "your-api-key" } }
{ "name": "Weather", "description": "Get weather information", "transport_type": "stdio", "command": "uvx", "args": ["@modelcontextprotocol/server-weather"], "env_vars": { "WEATHER_API_KEY": "your-api-key" } }
npx
uvx
node
{ "command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem"], "env_vars": { "ALLOWED_DIRECTORIES": "/home/user/documents,/home/user/projects", "READONLY": "false" } }
{ "url": "https://api.example.com/sse/events", "headers": { "Authorization": "Bearer your-token", "Accept": "text/event-stream" }, "sse_read_timeout": 120, "timeout": 45 }
{ "url": "https://api.example.com", "headers": { "Authorization": "Bearer your-api-key", "Content-Type": "application/json" }, "timeout": 60, "terminate_on_close": true }
Enabled
Disabled
Error
{ "name": "Support Documents", "description": "Access customer support documentation", "transport_type": "stdio", "command": "uvx", "args": ["@modelcontextprotocol/server-filesystem"], "env_vars": { "ALLOWED_DIRECTORIES": "/var/www/support-docs", "READONLY": "true" } }
{ "name": "CRM API", "description": "Customer relationship management integration", "transport_type": "http", "url": "https://api.salesforce.com", "headers": { "Authorization": "Bearer sf_token", "Content-Type": "application/json" } }
{ "name": "Code Repository", "description": "Access to technical documentation repository", "transport_type": "stdio", "command": "uvx", "args": ["@modelcontextprotocol/server-git"], "env_vars": { "GIT_REPO_PATH": "/opt/repositories/tech-docs" } }