Configuration
Configure your mcp_use environment
Configuration Guide
This guide covers all the configuration options available in mcp_use.
API Keys
Make sure to have the api key relative to the provider of your choice available in the environment you can either:
1 - Create .env
file with your keys as:
and load it in python using
this will make all the keys defibned in .env
available in yout python runtime, granted that you run from where the .env is located.
2 - Set it in your environment by running in your terminal the following command, e.g. for openai:
and then import it in your python code as:
or any other method you might prefer.
MCP Server Configuration
mcp_use supports any MCP server through a flexible configuration system. (For a list of awesome servers you can visit https://github.com/punkpeye/awesome-mcp-servers or https://github.com/appcypher/awesome-mcp-servers which have an amazing collection of them)
The configuration is defined in a JSON file with the following structure:
MCP servers can use different connection types (STDIO, HTTP, or WebSocket). For details on these connection types and how to configure them, see the Connection Types guide.
Configuration Options
server_name
: A unique identifier for your MCP servercommand
: The command to start the MCP serverargs
: Array of arguments to pass to the commandenv
: Environment variables to set for the server
Example Configuration
Here’s a basic example of how to configure an MCP server:
Multiple Server Configuration
You can configure multiple MCP servers in a single configuration file, allowing you to use different servers for different tasks or combine their capabilities (e.g.):
For a complete example of using multiple servers, see the multi-server example in our repository.
Agent Configuration
When creating an MCPAgent, you can configure several parameters:
Available Parameters
llm
: Any LangChain-compatible language model (required)client
: The MCPClient instance (optional if connectors are provided)connectors
: List of connectors if not using client (optional)server_name
: Name of the server to use (optional)max_steps
: Maximum number of steps the agent can take (default: 5)auto_initialize
: Whether to initialize automatically (default: False)memory_enabled
: Whether to enable memory (default: True)system_prompt
: Custom system prompt (optional)system_prompt_template
: Custom system prompt template (optional)additional_instructions
: Additional instructions for the agent (optional)
Error Handling
mcp_use provides several ways to handle errors:
- Connection Errors: Check your MCP server configuration and ensure the server is running
- Authentication Errors: Verify your API keys are correctly set in the environment
- Timeout Errors: Adjust the
max_steps
parameter if operations are timing out
Best Practices
- Always use environment variables for sensitive information
- Keep configuration files in version control (without sensitive data)
- Use appropriate timeouts for different types of operations
- Enable verbose logging during development
- Test configurations in a development environment before production