name = "mcp-enabled-mesh"
version = "1.0"
[[agents]]
name = "file_assistant"
model = "ollama::gemma3:latest"
system_prompt = """You are a file management assistant with access to filesystem tools.
You can read, write, and navigate files using the tools available to you."""
temperature = 0.7
max_tokens = 2048
[[agents.mcp_tools]]
type = "stdio"
name = "filesystem"
command = "npx"
args = ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"]
[[agents]]
name = "developer"
model = "ollama::gemma3:latest"
system_prompt = """You are a developer assistant with access to various tools.
Use Git tools for version control and fetch tools for web requests."""
temperature = 0.6
[[agents.mcp_tools]]
type = "stdio"
name = "git"
command = "npx"
args = ["-y", "@modelcontextprotocol/server-git"]
[[agents.mcp_tools]]
type = "stdio"
name = "fetch"
command = "npx"
args = ["-y", "@modelcontextprotocol/server-fetch"]
[[agents]]
name = "api_consumer"
model = "ollama::gemma3:latest"
system_prompt = "You are an API integration assistant."
[[agents.mcp_tools]]
type = "http"
name = "custom-api"
url = "http://localhost:3000/mcp"
[[agents]]
name = "custom_tools"
model = "ollama::gemma3:latest"
system_prompt = "You have access to custom tools."
[[agents.mcp_tools]]
type = "stdio"
name = "custom-python-server"
command = "python"
args = ["-m", "my_mcp_server"]
env = [["PYTHONPATH", "./custom_tools"]]