forked from zhanggangyong/agent_management
26 lines
678 B
JSON
26 lines
678 B
JSON
{
|
|
"mcpServers": {
|
|
"code-assistant-stdio": {
|
|
"command": "python",
|
|
"args": ["/home/taiji/tools/Pydantic-ai/run_mcp_server.py", "--transport", "stdio"],
|
|
"env": {
|
|
"OPENAI_API_KEY": "sk-",
|
|
"OPENAI_BASE_URL": "https://litellm.graystone-fb459c5d.southeastasia.azurecontainerapps.io/v1",
|
|
"LITELLM_MODEL": "openai:taiji/gpt-4o-mini"
|
|
}
|
|
},
|
|
"code-assistant-http": {
|
|
"url": "http://your-vm-ip:8001/mcp",
|
|
"type": "http",
|
|
"headers": {
|
|
"Authorization": "Bearer your-token-if-needed"
|
|
}
|
|
},
|
|
"code-assistant-sse": {
|
|
"url": "http://your-vm-ip:8001/mcp/sse",
|
|
"type": "sse"
|
|
}
|
|
}
|
|
}
|
|
|