[provider]
model = "claude-sonnet-4-20250514"
api_key = "${ANTHROPIC_API_KEY}"
[agent.profile]
name = "mcp-agent"
system_prompt = """You are a development assistant with access to GitHub and
the local filesystem via MCP servers, plus built-in coding tools."""
[tools]
enabled = ["bash", "file_read", "file_write"]
tool_strategy = "parallel"
[[tools.instances]]
name = "github"
enabled = true
[tools.instances.config]
transport = "stdio"
command = "npx"
args = ["-y", "@modelcontextprotocol/server-github"]
[tools.instances.config.env]
GITHUB_PERSONAL_ACCESS_TOKEN = "${GITHUB_TOKEN}"
[[tools.instances]]
name = "filesystem"
enabled = true
[tools.instances.config]
transport = "stdio"
command = "npx"
args = ["-y", "@modelcontextprotocol/server-filesystem", "/home/user/projects"]
[execution]
max_turns = 30
max_cost = 5.0