Skip to content

Commit 6b90925

Browse files
committed
Add ESLint and Cloudflare DEX MCP servers (completes 50 new servers)
https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 8cc3290 commit 6b90925

2 files changed

Lines changed: 91 additions & 0 deletions

File tree

servers/com.cloudflare-dex.json

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.cloudflare-dex",
4+
"name": "Cloudflare Digital Experience Monitoring",
5+
"alias": "cf-dex",
6+
"description": "Monitor digital employee experience with Cloudflare DEX. Track application performance, connectivity issues, and user experience metrics.",
7+
"icon": "https://avatars.githubusercontent.com/u/314135?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["monitoring", "cloud"],
10+
"tags": ["cloudflare", "dex", "monitoring", "experience", "performance", "zero-trust"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "mcp-remote", "https://dex.mcp.cloudflare.com/mcp"],
16+
"metadata": {
17+
"inputs": []
18+
}
19+
},
20+
21+
"auth": {
22+
"type": "oauth",
23+
"instructions": "Authentication is handled via OAuth when connecting to the Cloudflare MCP endpoint."
24+
},
25+
26+
"contributor": {
27+
"name": "Cloudflare",
28+
"github": "cloudflare",
29+
"url": "https://www.cloudflare.com"
30+
},
31+
32+
"links": {
33+
"repository": "https://github.com/cloudflare/mcp-server-cloudflare",
34+
"homepage": "https://www.cloudflare.com",
35+
"documentation": "https://developers.cloudflare.com/cloudflare-one/insights/dex/"
36+
},
37+
38+
"platforms": ["all"],
39+
40+
"capabilities": {
41+
"tools": true,
42+
"resources": false,
43+
"prompts": false,
44+
"read_only_mode": true
45+
}
46+
}

servers/com.eslint-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.eslint-mcp",
4+
"name": "ESLint",
5+
"alias": "eslint",
6+
"description": "Run ESLint code analysis through MCP. Lint JavaScript and TypeScript files, get fix suggestions, and check code quality against configurable rules.",
7+
"icon": "https://avatars.githubusercontent.com/u/6019716?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["developer-tools"],
10+
"tags": ["eslint", "linting", "javascript", "typescript", "code-quality", "static-analysis"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@eslint/mcp"],
16+
"metadata": {
17+
"inputs": []
18+
}
19+
},
20+
21+
"auth": {
22+
"type": "none"
23+
},
24+
25+
"contributor": {
26+
"name": "ESLint",
27+
"github": "eslint",
28+
"url": "https://eslint.org"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/eslint/rewrite",
33+
"homepage": "https://eslint.org",
34+
"documentation": "https://eslint.org/docs/latest/"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": true
44+
}
45+
}

0 commit comments

Comments
 (0)