forked from rohitg00/awesome-claude-code-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrontend.json
More file actions
43 lines (43 loc) · 1.51 KB
/
frontend.json
File metadata and controls
43 lines (43 loc) · 1.51 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
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"],
"description": "Browser automation for visual testing, screenshots, accessibility audits, and UI verification."
},
"figma": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-figma"],
"env": {
"FIGMA_PERSONAL_ACCESS_TOKEN": "<your-figma-pat>"
},
"description": "Read Figma designs, inspect component properties, extract design tokens and spacing values."
},
"storybook": {
"command": "npx",
"args": ["-y", "mcp-storybook"],
"env": {
"STORYBOOK_URL": "http://localhost:6006"
},
"description": "Browse and interact with Storybook component library. Inspect stories, props, and variants."
},
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/frontend-project"],
"description": "Read and write component files, styles, tests, and configuration."
},
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "<your-github-pat>"
},
"description": "Manage PRs, review UI changes, and track frontend-related issues."
},
"fetch": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-fetch"],
"description": "Fetch component library docs, MDN references, and CSS specification details."
}
}
}