-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.mcp.json
More file actions
85 lines (85 loc) · 2.11 KB
/
.mcp.json
File metadata and controls
85 lines (85 loc) · 2.11 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
75
76
77
78
79
80
81
82
83
84
85
{
"mcpServers": {
"github": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
"category": "Development Tools",
"complexity": "Medium",
"enabled": false,
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": ""
}
},
"postgres": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres"
],
"category": "Database",
"complexity": "Medium",
"enabled": false,
"env": {
"POSTGRES_CONNECTION_STRING": ""
}
},
"brave-search": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-brave-search"
],
"category": "Web Search",
"complexity": "Low",
"enabled": false,
"env": {
"BRAVE_API_KEY": ""
}
},
"ruby-docs": {
"command": "ruby",
"args": [
"-e",
"require 'json'; require 'net/http'; puts JSON.generate({tools: [{name: 'ruby_docs', description: 'Search Ruby documentation'}]})"
],
"category": "Documentation",
"complexity": "Low",
"enabled": true
},
"rails-docs": {
"command": "ruby",
"args": [
"-e",
"require 'json'; require 'net/http'; puts JSON.generate({tools: [{name: 'rails_docs', description: 'Search Rails documentation and guides'}]})"
],
"category": "Documentation",
"complexity": "Low",
"enabled": true
},
"rubygems": {
"command": "ruby",
"args": [
"-e",
"require 'json'; require 'net/http'; puts JSON.generate({tools: [{name: 'gem_search', description: 'Search and explore Ruby gems'}]})"
],
"category": "Package Management",
"complexity": "Low",
"enabled": true
},
"bundler": {
"command": "bundle",
"args": [
"exec",
"ruby",
"-e",
"require 'json'; puts JSON.generate({tools: [{name: 'bundle_audit', description: 'Security audit for gems'}]})"
],
"category": "Security",
"complexity": "Medium",
"enabled": true
}
}
}