Skip to content

Commit 375b573

Browse files
committed
Add 9 new MCP servers: Discord, Pandoc, Git, Groq, Time, Everything, ClickUp, Coolify, Semgrep
https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent e6fa420 commit 375b573

9 files changed

Lines changed: 518 additions & 0 deletions

servers/com.groq-mcp.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.groq-mcp",
4+
"name": "Groq",
5+
"alias": "groq",
6+
"description": "Access Groq's ultra-fast LLM inference API. Run AI models with low latency for text generation, code completion, and more through Groq Cloud.",
7+
"icon": "https://avatars.githubusercontent.com/u/132372032?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["ai-ml"],
10+
"tags": ["groq", "llm", "inference", "ai", "fast-inference", "api"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "uvx",
15+
"args": ["groq-mcp"],
16+
"env": {
17+
"GROQ_API_KEY": "${input:GROQ_API_KEY}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "GROQ_API_KEY",
23+
"label": "Groq API Key",
24+
"description": "API key for Groq Cloud. Free tier available.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "gsk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://console.groq.com/keys",
31+
"instructions": "1. Go to console.groq.com\n2. Sign up or log in\n3. Navigate to API Keys\n4. Click 'Create API Key'\n5. Copy the key (starts with gsk_)",
32+
"button_label": "Create API Key"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Get a free API key at https://console.groq.com/keys"
42+
},
43+
44+
"contributor": {
45+
"name": "Groq",
46+
"github": "groq",
47+
"url": "https://groq.com"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/groq/groq-mcp",
52+
"homepage": "https://groq.com",
53+
"documentation": "https://github.com/groq/groq-mcp#readme"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": true
63+
}
64+
}

servers/community.clickup.json

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.clickup",
4+
"name": "ClickUp",
5+
"alias": "clickup",
6+
"description": "Manage ClickUp workspaces, spaces, folders, lists, and tasks. Create, update, and organize project management data through the ClickUp API.",
7+
"icon": "https://avatars.githubusercontent.com/u/29898280?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["productivity"],
10+
"tags": ["clickup", "project-management", "tasks", "productivity", "workspaces"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "clickup-mcp-server"],
16+
"env": {
17+
"CLICKUP_API_TOKEN": "${input:CLICKUP_API_TOKEN}"
18+
},
19+
"metadata": {
20+
"inputs": [
21+
{
22+
"id": "CLICKUP_API_TOKEN",
23+
"label": "ClickUp API Token",
24+
"description": "Personal API token for ClickUp access.",
25+
"type": "password",
26+
"required": true,
27+
"secret": true,
28+
"placeholder": "pk_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
29+
"obtain": {
30+
"url": "https://app.clickup.com/settings/apps",
31+
"instructions": "1. Go to ClickUp Settings\n2. Navigate to Apps\n3. Click 'Generate API Token'\n4. Copy the token",
32+
"button_label": "Generate Token"
33+
}
34+
}
35+
]
36+
}
37+
},
38+
39+
"auth": {
40+
"type": "api_key",
41+
"instructions": "Generate a personal API token from ClickUp Settings > Apps."
42+
},
43+
44+
"contributor": {
45+
"name": "nsxdavid",
46+
"github": "nsxdavid",
47+
"url": "https://github.com/nsxdavid"
48+
},
49+
50+
"links": {
51+
"repository": "https://github.com/nsxdavid/clickup-mcp-server",
52+
"homepage": "https://clickup.com",
53+
"documentation": "https://github.com/nsxdavid/clickup-mcp-server#readme"
54+
},
55+
56+
"platforms": ["all"],
57+
58+
"capabilities": {
59+
"tools": true,
60+
"resources": false,
61+
"prompts": false,
62+
"read_only_mode": false
63+
}
64+
}

servers/community.coolify.json

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.coolify",
4+
"name": "Coolify",
5+
"alias": "coolify",
6+
"description": "Manage Coolify self-hosted infrastructure. Deploy applications, manage servers, databases, and services with 35 token-optimized tools.",
7+
"icon": "https://avatars.githubusercontent.com/u/71755829?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["cloud", "developer-tools"],
10+
"tags": ["coolify", "self-hosted", "deployment", "paas", "docker", "infrastructure"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@masonator/coolify-mcp"],
16+
"env": {
17+
"COOLIFY_ACCESS_TOKEN": "${input:COOLIFY_ACCESS_TOKEN}",
18+
"COOLIFY_BASE_URL": "${input:COOLIFY_BASE_URL}"
19+
},
20+
"metadata": {
21+
"inputs": [
22+
{
23+
"id": "COOLIFY_ACCESS_TOKEN",
24+
"label": "Coolify API Token",
25+
"description": "API token for your Coolify instance.",
26+
"type": "password",
27+
"required": true,
28+
"secret": true,
29+
"placeholder": "your-coolify-api-token",
30+
"obtain": {
31+
"url": "https://coolify.io/docs/api-reference/authorization",
32+
"instructions": "1. Open your Coolify dashboard\n2. Navigate to API settings\n3. Generate an API token\n4. Copy the token",
33+
"button_label": "API Docs"
34+
}
35+
},
36+
{
37+
"id": "COOLIFY_BASE_URL",
38+
"label": "Coolify Instance URL",
39+
"description": "Base URL of your Coolify instance.",
40+
"type": "url",
41+
"required": false,
42+
"secret": false,
43+
"default": "http://localhost:3000",
44+
"placeholder": "https://your-coolify-instance.com"
45+
}
46+
]
47+
}
48+
},
49+
50+
"auth": {
51+
"type": "api_key",
52+
"instructions": "Generate an API token from your Coolify dashboard's API settings."
53+
},
54+
55+
"contributor": {
56+
"name": "masonator",
57+
"github": "masonator",
58+
"url": "https://github.com/masonator"
59+
},
60+
61+
"links": {
62+
"repository": "https://github.com/masonator/coolify-mcp",
63+
"homepage": "https://coolify.io",
64+
"documentation": "https://github.com/masonator/coolify-mcp#readme"
65+
},
66+
67+
"platforms": ["all"],
68+
69+
"capabilities": {
70+
"tools": true,
71+
"resources": false,
72+
"prompts": false,
73+
"read_only_mode": false
74+
}
75+
}

servers/community.discord.json

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.discord",
4+
"name": "Discord",
5+
"alias": "discord",
6+
"description": "Interact with Discord servers through a bot. Send messages, manage channels, read message history, and manage server settings via the Discord Bot API.",
7+
"icon": "https://avatars.githubusercontent.com/u/1965106?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["communication"],
10+
"tags": ["discord", "chat", "bot", "messaging", "community", "communication"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "mcp-discord", "--config", "${input:DISCORD_TOKEN}"],
16+
"metadata": {
17+
"inputs": [
18+
{
19+
"id": "DISCORD_TOKEN",
20+
"label": "Discord Bot Token",
21+
"description": "Discord bot token for authentication. Requires Message Content, Server Members, and Presence intents enabled.",
22+
"type": "password",
23+
"required": true,
24+
"secret": true,
25+
"placeholder": "MTxxxxxxxxxxxxxxxxxxxxxxxx.xxxxxx.xxxxxxxxxxxxxxxxxxxxxxxxxx",
26+
"obtain": {
27+
"url": "https://discord.com/developers/applications",
28+
"instructions": "1. Go to Discord Developer Portal\n2. Click 'New Application' and create your app\n3. Navigate to Bot section\n4. Click 'Reset Token' to generate a new bot token\n5. Enable Message Content, Server Members, and Presence intents\n6. Copy the token",
29+
"button_label": "Create Bot"
30+
}
31+
}
32+
]
33+
}
34+
},
35+
36+
"auth": {
37+
"type": "api_key",
38+
"instructions": "Create a Discord bot at https://discord.com/developers/applications and copy the bot token."
39+
},
40+
41+
"contributor": {
42+
"name": "v-3",
43+
"github": "v-3",
44+
"url": "https://github.com/v-3"
45+
},
46+
47+
"links": {
48+
"repository": "https://github.com/v-3/mcp-discord",
49+
"homepage": "https://discord.com",
50+
"documentation": "https://github.com/v-3/mcp-discord#readme"
51+
},
52+
53+
"platforms": ["all"],
54+
55+
"capabilities": {
56+
"tools": true,
57+
"resources": false,
58+
"prompts": false,
59+
"read_only_mode": false
60+
}
61+
}

servers/community.everything.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.everything",
4+
"name": "Everything",
5+
"alias": "everything",
6+
"description": "Reference MCP server that demonstrates all MCP protocol features including prompts, tools, resources, and sampling. Useful for testing and development.",
7+
"icon": "https://avatars.githubusercontent.com/u/182288589?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools"],
10+
"tags": ["testing", "reference", "mcp", "protocol", "demo", "development"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@modelcontextprotocol/server-everything"],
16+
"metadata": {
17+
"inputs": []
18+
}
19+
},
20+
21+
"auth": {
22+
"type": "none"
23+
},
24+
25+
"contributor": {
26+
"name": "Model Context Protocol",
27+
"github": "modelcontextprotocol",
28+
"url": "https://modelcontextprotocol.io"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/modelcontextprotocol/servers",
33+
"homepage": "https://modelcontextprotocol.io",
34+
"documentation": "https://github.com/modelcontextprotocol/servers/blob/main/src/everything/README.md"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": true,
42+
"prompts": true,
43+
"read_only_mode": true
44+
}
45+
}

servers/community.git.json

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "community.git",
4+
"name": "Git",
5+
"alias": "git",
6+
"description": "Interact with local Git repositories. Read commit history, diffs, branches, and perform git operations for repository automation.",
7+
"icon": "https://avatars.githubusercontent.com/u/182288589?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["version-control", "developer-tools"],
10+
"tags": ["git", "version-control", "repository", "commits", "branches", "diff"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "uvx",
15+
"args": ["mcp-server-git", "--repository", "${input:GIT_REPOSITORY}"],
16+
"metadata": {
17+
"inputs": [
18+
{
19+
"id": "GIT_REPOSITORY",
20+
"label": "Repository Path",
21+
"description": "Path to the local Git repository to interact with.",
22+
"type": "text",
23+
"required": true,
24+
"secret": false,
25+
"placeholder": "/path/to/your/git/repo"
26+
}
27+
]
28+
}
29+
},
30+
31+
"auth": {
32+
"type": "none"
33+
},
34+
35+
"contributor": {
36+
"name": "Model Context Protocol",
37+
"github": "modelcontextprotocol",
38+
"url": "https://modelcontextprotocol.io"
39+
},
40+
41+
"links": {
42+
"repository": "https://github.com/modelcontextprotocol/servers",
43+
"homepage": "https://git-scm.com",
44+
"documentation": "https://github.com/modelcontextprotocol/servers/blob/main/src/git/README.md"
45+
},
46+
47+
"platforms": ["all"],
48+
49+
"capabilities": {
50+
"tools": true,
51+
"resources": false,
52+
"prompts": false,
53+
"read_only_mode": false
54+
}
55+
}

0 commit comments

Comments
 (0)