-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcatalog.json
More file actions
155 lines (155 loc) · 5.5 KB
/
catalog.json
File metadata and controls
155 lines (155 loc) · 5.5 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"version": 1,
"tools": [
{
"id": "filesystem",
"name": "Filesystem",
"description": "Read, write, search, and manage files and directories",
"package": "@modelcontextprotocol/server-filesystem",
"mode": "npx",
"env_required": [],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/filesystem",
"category": "system"
},
{
"id": "github",
"name": "GitHub",
"description": "Manage repositories, issues, pull requests, and workflows",
"package": "@modelcontextprotocol/server-github",
"mode": "npx",
"env_required": ["GITHUB_PERSONAL_ACCESS_TOKEN"],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/github",
"category": "developer"
},
{
"id": "git",
"name": "Git",
"description": "Git operations — clone, commit, diff, log, branch management",
"package": "mcp-server-git",
"mode": "uvx",
"env_required": [],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/git",
"category": "developer"
},
{
"id": "slack",
"name": "Slack",
"description": "Send messages, manage channels, search conversations",
"package": "@modelcontextprotocol/server-slack",
"mode": "npx",
"env_required": ["SLACK_BOT_TOKEN", "SLACK_TEAM_ID"],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/slack",
"category": "communication"
},
{
"id": "postgres",
"name": "PostgreSQL",
"description": "Query and inspect PostgreSQL databases",
"package": "@modelcontextprotocol/server-postgres",
"mode": "npx",
"env_required": ["POSTGRESQL_URI"],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/postgres",
"category": "database"
},
{
"id": "sqlite",
"name": "SQLite",
"description": "Query and manage SQLite databases",
"package": "mcp-server-sqlite",
"mode": "uvx",
"env_required": [],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/sqlite",
"category": "database"
},
{
"id": "puppeteer",
"name": "Puppeteer",
"description": "Browser automation — navigate, screenshot, interact with web pages",
"package": "@modelcontextprotocol/server-puppeteer",
"mode": "npx",
"env_required": [],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/puppeteer",
"category": "web"
},
{
"id": "fetch",
"name": "Web Fetch",
"description": "Fetch web pages and convert to readable text or markdown",
"package": "mcp-server-fetch",
"mode": "uvx",
"env_required": [],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/fetch",
"category": "web"
},
{
"id": "brave-search",
"name": "Brave Search",
"description": "Web and local search via the Brave Search API",
"package": "@modelcontextprotocol/server-brave-search",
"mode": "npx",
"env_required": ["BRAVE_API_KEY"],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/brave-search",
"category": "web"
},
{
"id": "memory",
"name": "Memory",
"description": "Persistent knowledge graph for storing and retrieving information",
"package": "@modelcontextprotocol/server-memory",
"mode": "npx",
"env_required": [],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/memory",
"category": "system"
},
{
"id": "google-maps",
"name": "Google Maps",
"description": "Geocoding, directions, place search, and elevation data",
"package": "@modelcontextprotocol/server-google-maps",
"mode": "npx",
"env_required": ["GOOGLE_MAPS_API_KEY"],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/google-maps",
"category": "data"
},
{
"id": "discord",
"name": "Discord",
"description": "Send messages, manage channels, read server info on Discord",
"package": "@autonet-code/mcp-discord",
"mode": "npx",
"env_required": ["DISCORD_TOKEN"],
"homepage": "https://github.com/autonet-code/discord",
"category": "communication"
},
{
"id": "everything",
"name": "Everything",
"description": "Reference MCP server for testing — exposes sample tools, resources, and prompts",
"package": "@modelcontextprotocol/server-everything",
"mode": "npx",
"env_required": [],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/everything",
"category": "testing"
},
{
"id": "sequential-thinking",
"name": "Sequential Thinking",
"description": "Dynamic problem-solving through structured thought sequences with branching and revision",
"package": "@modelcontextprotocol/server-sequential-thinking",
"mode": "npx",
"env_required": [],
"homepage": "https://github.com/modelcontextprotocol/servers/tree/main/src/sequentialthinking",
"category": "reasoning"
},
{
"id": "autonet-web",
"name": "Autonet Web",
"description": "Control a real Chrome browser — navigate, click, type, screenshot via CDP",
"package": "@autonet-code/web",
"mode": "npx",
"env_required": [],
"homepage": "https://github.com/autonet-code/web",
"category": "web"
}
]
}