forked from sxhxliang/agent-studio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
74 lines (74 loc) · 1.83 KB
/
config.example.json
File metadata and controls
74 lines (74 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"agent_servers": {
"Claude Code": {
"command": "claude-code-acp",
"args": [],
"env": {}
}
},
"upload_dir": ".",
"models": {
"GPT-4": {
"enabled": true,
"provider": "OpenAI",
"base_url": "https://api.openai.com/v1",
"api_key": "your-api-key-here",
"model_name": "gpt-4"
}
},
"_comment_mcp_format": "You can use either 'mcp_servers' or 'mcpServers' as the key name",
"mcpServers": {
"_comment_simplified": "Simplified format - most common use case",
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/Users/username/Desktop",
"/Users/username/Downloads"
]
},
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"env": {
"GITHUB_TOKEN": "your-github-token"
}
},
"_comment_full": "Full format - for advanced configuration",
"example-http-server": {
"enabled": true,
"description": "Example MCP server using HTTP transport",
"config": {
"type": "http",
"name": "example-http-server",
"url": "https://example.com/mcp",
"headers": [
{
"name": "Authorization",
"value": "Bearer your-token-here"
}
]
}
},
"example-sse-server": {
"enabled": false,
"description": "Example MCP server using SSE transport (disabled)",
"config": {
"type": "sse",
"name": "example-sse-server",
"url": "https://example.com/mcp/sse",
"headers": []
}
}
},
"commands": {
"summarize": {
"description": "Summarize the current conversation",
"template": "Please provide a concise summary of our conversation so far."
}
}
}