Skip to content

Commit e6d5ed9

Browse files
committed
feat: add 10 new MCP server definitions
Add server definitions for Linear, Stripe (remote + local), Neon (remote + local), Todoist, Twilio, Grafana, Context7, and PostgreSQL. Includes multiple transport variants for Stripe and Neon (remote HTTP with OAuth and local stdio with API keys). - com.linear-mcp: Linear remote HTTP with OAuth - com.stripe-mcp-http: Stripe remote HTTP with OAuth - com.stripe-mcp: Stripe local stdio via @stripe/mcp - com.neon-mcp-http: Neon remote HTTP with OAuth - com.neon-mcp: Neon local stdio via @neondatabase/mcp-server-neon - com.todoist-mcp: Todoist remote HTTP with OAuth - com.twilio-mcp: Twilio local stdio via @twilio-alpha/mcp - com.grafana-mcp: Grafana local stdio via Docker - com.upstash-context7: Context7 local stdio via @upstash/context7-mcp - community.postgresql: PostgreSQL local stdio via @modelcontextprotocol/server-postgres https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 7c243a3 commit e6d5ed9

10 files changed

Lines changed: 549 additions & 0 deletions

servers/com.grafana-mcp.json

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.grafana-mcp",
4+
"name": "Grafana",
5+
"alias": "grafana",
6+
"description": "Search dashboards, query Prometheus and Loki datasources, manage alerts, and investigate incidents through the official Grafana MCP server.",
7+
"icon": "https://avatars.githubusercontent.com/u/7195757?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["monitoring", "developer-tools"],
10+
"tags": ["grafana", "monitoring", "dashboards", "prometheus", "loki", "alerts", "observability", "metrics"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "docker",
15+
"args": [
16+
"run", "-i", "--rm",
17+
"-e", "GRAFANA_URL",
18+
"-e", "GRAFANA_SERVICE_ACCOUNT_TOKEN",
19+
"grafana/mcp-grafana",
20+
"-t", "stdio"
21+
],
22+
"env": {
23+
"GRAFANA_URL": "${input:GRAFANA_URL}",
24+
"GRAFANA_SERVICE_ACCOUNT_TOKEN": "${input:GRAFANA_TOKEN}"
25+
},
26+
"metadata": {
27+
"inputs": [
28+
{
29+
"id": "GRAFANA_URL",
30+
"label": "Grafana URL",
31+
"description": "URL of your Grafana instance. Include the protocol (http:// or https://).",
32+
"type": "url",
33+
"required": true,
34+
"secret": false,
35+
"placeholder": "http://localhost:3000"
36+
},
37+
{
38+
"id": "GRAFANA_TOKEN",
39+
"label": "Grafana Service Account Token",
40+
"description": "Service account token with appropriate permissions. Create a service account with the Editor role for full read/write access.",
41+
"type": "password",
42+
"required": true,
43+
"secret": true,
44+
"placeholder": "glsa_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
45+
"obtain": {
46+
"url": "https://grafana.com/docs/grafana/latest/administration/service-accounts/",
47+
"instructions": "1. Go to your Grafana instance\n2. Navigate to Administration > Service accounts\n3. Click 'Add service account'\n4. Assign the 'Editor' role\n5. Click 'Add service account token'\n6. Copy the generated token (starts with glsa_)",
48+
"button_label": "Learn More"
49+
}
50+
}
51+
]
52+
}
53+
},
54+
55+
"auth": {
56+
"type": "api_key",
57+
"instructions": "Create a service account token in your Grafana instance under Administration > Service accounts"
58+
},
59+
60+
"contributor": {
61+
"name": "Grafana Labs",
62+
"github": "grafana",
63+
"url": "https://grafana.com"
64+
},
65+
66+
"links": {
67+
"repository": "https://github.com/grafana/mcp-grafana",
68+
"homepage": "https://grafana.com",
69+
"documentation": "https://github.com/grafana/mcp-grafana#readme"
70+
},
71+
72+
"platforms": ["all"],
73+
74+
"capabilities": {
75+
"tools": true,
76+
"resources": false,
77+
"prompts": false,
78+
"read_only_mode": false
79+
},
80+
81+
"changelog_url": "https://github.com/grafana/mcp-grafana/releases"
82+
}

servers/com.linear-mcp.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": "com.linear-mcp",
4+
"name": "Linear",
5+
"alias": "linear",
6+
"description": "Search, create, and update Linear issues, projects, and comments through Linear's official remote MCP server with OAuth authentication.",
7+
"icon": "https://avatars.githubusercontent.com/u/46686594?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["productivity", "developer-tools"],
10+
"tags": ["linear", "project-management", "issues", "tasks", "agile", "sprints", "cycles"],
11+
12+
"transport": {
13+
"type": "http",
14+
"url": "https://mcp.linear.app/mcp",
15+
"metadata": {
16+
"inputs": []
17+
}
18+
},
19+
20+
"auth": {
21+
"type": "oauth",
22+
"instructions": "Connect via OAuth when prompted by your MCP client. The server uses OAuth 2.1 with dynamic client registration."
23+
},
24+
25+
"contributor": {
26+
"name": "Linear",
27+
"github": "linear",
28+
"url": "https://linear.app"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/linear/linear",
33+
"homepage": "https://linear.app",
34+
"documentation": "https://linear.app/docs/mcp"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": false
44+
}
45+
}

servers/com.neon-mcp-http.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": "com.neon-mcp-http",
4+
"name": "Neon (Remote)",
5+
"alias": "neon-remote",
6+
"description": "Manage Neon serverless Postgres databases through Neon's official remote MCP server with OAuth authentication. Create projects, run queries, and perform migrations.",
7+
"icon": "https://avatars.githubusercontent.com/u/77690634?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["database", "cloud"],
10+
"tags": ["neon", "postgres", "postgresql", "serverless", "database", "sql", "migrations"],
11+
12+
"transport": {
13+
"type": "http",
14+
"url": "https://mcp.neon.tech/mcp",
15+
"metadata": {
16+
"inputs": []
17+
}
18+
},
19+
20+
"auth": {
21+
"type": "oauth",
22+
"instructions": "Connect via OAuth when prompted by your MCP client. You will be redirected to Neon to authorize access."
23+
},
24+
25+
"contributor": {
26+
"name": "Neon",
27+
"github": "neondatabase",
28+
"url": "https://neon.tech"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/neondatabase/mcp-server-neon",
33+
"homepage": "https://neon.tech",
34+
"documentation": "https://neon.com/docs/ai/neon-mcp-server"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": false
44+
}
45+
}

servers/com.neon-mcp.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.neon-mcp",
4+
"name": "Neon (Local)",
5+
"alias": "neon",
6+
"description": "Manage Neon serverless Postgres databases locally using the official Neon MCP server. Create projects, run SQL queries, and perform database migrations with your API key.",
7+
"icon": "https://avatars.githubusercontent.com/u/77690634?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["database", "cloud"],
10+
"tags": ["neon", "postgres", "postgresql", "serverless", "database", "sql", "migrations"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@neondatabase/mcp-server-neon", "start", "${input:NEON_API_KEY}"],
16+
"metadata": {
17+
"inputs": [
18+
{
19+
"id": "NEON_API_KEY",
20+
"label": "Neon API Key",
21+
"description": "API key for accessing the Neon Management API. Used to manage projects, branches, and run SQL queries.",
22+
"type": "password",
23+
"required": true,
24+
"secret": true,
25+
"placeholder": "neon_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
26+
"obtain": {
27+
"url": "https://console.neon.tech/app/settings/api-keys",
28+
"instructions": "1. Go to the Neon Console\n2. Navigate to Settings > API keys\n3. Click 'Create new API key'\n4. Give it a name and click 'Create'\n5. Copy the generated key",
29+
"button_label": "Create API Key"
30+
}
31+
}
32+
]
33+
}
34+
},
35+
36+
"auth": {
37+
"type": "api_key",
38+
"instructions": "Create a Neon API key at https://console.neon.tech/app/settings/api-keys"
39+
},
40+
41+
"contributor": {
42+
"name": "Neon",
43+
"github": "neondatabase",
44+
"url": "https://neon.tech"
45+
},
46+
47+
"links": {
48+
"repository": "https://github.com/neondatabase/mcp-server-neon",
49+
"homepage": "https://neon.tech",
50+
"documentation": "https://neon.com/docs/ai/neon-mcp-server"
51+
},
52+
53+
"platforms": ["all"],
54+
55+
"capabilities": {
56+
"tools": true,
57+
"resources": false,
58+
"prompts": false,
59+
"read_only_mode": false
60+
},
61+
62+
"changelog_url": "https://github.com/neondatabase/mcp-server-neon/releases"
63+
}

servers/com.stripe-mcp-http.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": "com.stripe-mcp-http",
4+
"name": "Stripe (Remote)",
5+
"alias": "stripe-remote",
6+
"description": "Interact with Stripe APIs through Stripe's official remote MCP server. Manage payments, customers, subscriptions, and more with OAuth authentication.",
7+
"icon": "https://avatars.githubusercontent.com/u/856813?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["cloud", "developer-tools"],
10+
"tags": ["stripe", "payments", "billing", "subscriptions", "fintech", "api"],
11+
12+
"transport": {
13+
"type": "http",
14+
"url": "https://mcp.stripe.com",
15+
"metadata": {
16+
"inputs": []
17+
}
18+
},
19+
20+
"auth": {
21+
"type": "oauth",
22+
"instructions": "Connect via OAuth when prompted by your MCP client. You will be redirected to Stripe to authorize access."
23+
},
24+
25+
"contributor": {
26+
"name": "Stripe",
27+
"github": "stripe",
28+
"url": "https://stripe.com"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/stripe/agent-toolkit",
33+
"homepage": "https://stripe.com",
34+
"documentation": "https://github.com/stripe/agent-toolkit#readme"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": false
44+
}
45+
}

servers/com.stripe-mcp.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.stripe-mcp",
4+
"name": "Stripe (Local)",
5+
"alias": "stripe",
6+
"description": "Interact with Stripe APIs locally through the official Stripe MCP package. Manage payments, customers, subscriptions, and more using your Stripe secret key.",
7+
"icon": "https://avatars.githubusercontent.com/u/856813?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["cloud", "developer-tools"],
10+
"tags": ["stripe", "payments", "billing", "subscriptions", "fintech", "api"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@stripe/mcp", "--tools=all", "--api-key", "${input:STRIPE_SECRET_KEY}"],
16+
"metadata": {
17+
"inputs": [
18+
{
19+
"id": "STRIPE_SECRET_KEY",
20+
"label": "Stripe Secret Key",
21+
"description": "Your Stripe secret API key. Use a test key (sk_test_) for development or a live key (sk_live_) for production.",
22+
"type": "password",
23+
"required": true,
24+
"secret": true,
25+
"placeholder": "sk_test_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
26+
"obtain": {
27+
"url": "https://dashboard.stripe.com/apikeys",
28+
"instructions": "1. Go to the Stripe Dashboard\n2. Navigate to Developers > API keys\n3. Copy your Secret key (starts with sk_test_ or sk_live_)\n4. For testing, use the test mode key",
29+
"button_label": "Get API Key"
30+
}
31+
}
32+
]
33+
}
34+
},
35+
36+
"auth": {
37+
"type": "api_key",
38+
"instructions": "Get your Stripe secret key from the Stripe Dashboard at https://dashboard.stripe.com/apikeys"
39+
},
40+
41+
"contributor": {
42+
"name": "Stripe",
43+
"github": "stripe",
44+
"url": "https://stripe.com"
45+
},
46+
47+
"links": {
48+
"repository": "https://github.com/stripe/agent-toolkit",
49+
"homepage": "https://stripe.com",
50+
"documentation": "https://github.com/stripe/agent-toolkit#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+
62+
"changelog_url": "https://github.com/stripe/agent-toolkit/releases"
63+
}

servers/com.todoist-mcp.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": "com.todoist-mcp",
4+
"name": "Todoist",
5+
"alias": "todoist",
6+
"description": "Manage Todoist tasks, projects, and labels through Doist's official remote MCP server with OAuth authentication.",
7+
"icon": "https://avatars.githubusercontent.com/u/2565372?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["productivity"],
10+
"tags": ["todoist", "tasks", "todo", "project-management", "productivity", "doist"],
11+
12+
"transport": {
13+
"type": "http",
14+
"url": "https://ai.todoist.net/mcp",
15+
"metadata": {
16+
"inputs": []
17+
}
18+
},
19+
20+
"auth": {
21+
"type": "oauth",
22+
"instructions": "Connect via OAuth when prompted by your MCP client. You will be redirected to Todoist to authorize access."
23+
},
24+
25+
"contributor": {
26+
"name": "Doist",
27+
"github": "Doist",
28+
"url": "https://todoist.com"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/Doist/todoist-ai",
33+
"homepage": "https://todoist.com",
34+
"documentation": "https://github.com/Doist/todoist-ai#readme"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": false
44+
}
45+
}

0 commit comments

Comments
 (0)