@@ -5,7 +5,7 @@ Common MCP server configurations for Sofos.
55## Filesystem
66
77``` toml
8- [mcpServers .filesystem ]
8+ [mcp-servers .filesystem ]
99command = " npx"
1010args = [" -y" , " @modelcontextprotocol/server-filesystem" , " /path/to/directory" ]
1111```
@@ -15,15 +15,15 @@ args = ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/directory"]
1515### PostgreSQL
1616
1717``` toml
18- [mcpServers .postgres ]
18+ [mcp-servers .postgres ]
1919command = " npx"
2020args = [" -y" , " @modelcontextprotocol/server-postgres" , " postgresql://localhost/mydb" ]
2121```
2222
2323### PostgreSQL with credentials
2424
2525``` toml
26- [mcpServers .postgres ]
26+ [mcp-servers .postgres ]
2727command = " npx"
2828args = [" -y" , " @modelcontextprotocol/server-postgres" , " postgresql://user@localhost/mydb" ]
2929env = { "PGPASSWORD" = " secret123" }
@@ -32,7 +32,7 @@ env = { "PGPASSWORD" = "secret123" }
3232### SQLite
3333
3434``` toml
35- [mcpServers .sqlite ]
35+ [mcp-servers .sqlite ]
3636command = " npx"
3737args = [" -y" , " @modelcontextprotocol/server-sqlite" , " /path/to/database.db" ]
3838```
@@ -42,7 +42,7 @@ args = ["-y", "@modelcontextprotocol/server-sqlite", "/path/to/database.db"]
4242### GitHub
4343
4444``` toml
45- [mcpServers .github ]
45+ [mcp-servers .github ]
4646command = " npx"
4747args = [" -y" , " @modelcontextprotocol/server-github" ]
4848env = { "GITHUB_TOKEN" = " ghp_YOUR_TOKEN" }
@@ -53,7 +53,7 @@ Get token: https://github.com/settings/tokens
5353### GitLab
5454
5555``` toml
56- [mcpServers .gitlab ]
56+ [mcp-servers .gitlab ]
5757command = " npx"
5858args = [" -y" , " @modelcontextprotocol/server-gitlab" ]
5959env = { "GITLAB_TOKEN" = " glpat_YOUR_TOKEN" }
@@ -62,7 +62,7 @@ env = { "GITLAB_TOKEN" = "glpat_YOUR_TOKEN" }
6262### Slack
6363
6464``` toml
65- [mcpServers .slack ]
65+ [mcp-servers .slack ]
6666command = " npx"
6767args = [" -y" , " @modelcontextprotocol/server-slack" ]
6868env = { "SLACK_BOT_TOKEN" = " xoxb-YOUR-TOKEN" , "SLACK_TEAM_ID" = " T1234567890" }
@@ -73,7 +73,7 @@ env = { "SLACK_BOT_TOKEN" = "xoxb-YOUR-TOKEN", "SLACK_TEAM_ID" = "T1234567890" }
7373### Google Drive
7474
7575``` toml
76- [mcpServers .gdrive ]
76+ [mcp-servers .gdrive ]
7777command = " npx"
7878args = [" -y" , " @modelcontextprotocol/server-google-drive" ]
7979env = { "GOOGLE_APPLICATION_CREDENTIALS" = " /path/to/credentials.json" }
@@ -84,15 +84,15 @@ env = { "GOOGLE_APPLICATION_CREDENTIALS" = "/path/to/credentials.json" }
8484### HTTP Server
8585
8686``` toml
87- [mcpServers .custom ]
87+ [mcp-servers .custom ]
8888url = " https://api.example.com/mcp"
8989headers = { "Authorization" = " Bearer YOUR_TOKEN" }
9090```
9191
9292### Python Server
9393
9494``` toml
95- [mcpServers .python ]
95+ [mcp-servers .python ]
9696command = " python"
9797args = [" -m" , " my_mcp_server" ]
9898env = { "API_KEY" = " YOUR_KEY" }
@@ -101,7 +101,7 @@ env = { "API_KEY" = "YOUR_KEY" }
101101### Custom Binary with Environment
102102
103103``` toml
104- [mcpServers .company-internal ]
104+ [mcp-servers .company-internal ]
105105command = " /usr/local/bin/company-mcp-server"
106106args = [" --config" , " /etc/company/mcp-config.json" ]
107107env = { "COMPANY_API_URL" = " https://internal.company.com" , "LOG_LEVEL" = " debug" }
@@ -110,15 +110,15 @@ env = { "COMPANY_API_URL" = "https://internal.company.com", "LOG_LEVEL" = "debug
110110## Multiple Servers
111111
112112``` toml
113- [mcpServers .docs ]
113+ [mcp-servers .docs ]
114114command = " npx"
115115args = [" -y" , " @modelcontextprotocol/server-filesystem" , " /Users/username/Documents" ]
116116
117- [mcpServers .projects ]
117+ [mcp-servers .projects ]
118118command = " npx"
119119args = [" -y" , " @modelcontextprotocol/server-filesystem" , " /Users/username/Projects" ]
120120
121- [mcpServers .github ]
121+ [mcp-servers .github ]
122122command = " npx"
123123args = [" -y" , " @modelcontextprotocol/server-github" ]
124124env = { "GITHUB_TOKEN" = " ghp_YOUR_TOKEN" }
0 commit comments