Content
# MCP Server for D-ZERO Development Environment
This is a Model Context Protocol (MCP) server for the D-ZERO frontend development environment. It provides the following features:
- **Fetching Figma Data**: Retrieve data from Figma files and nodes via API
- **Providing Coding Guidelines**: Offer D-ZERO frontend development regulations
- **Integration with CLINE**: Operate as CLINE's MCP server and support interaction with AI assistants
By using this server, developers can reference Figma designs and check coding guidelines through conversations with the AI assistant.
## `cline_mcp_settings.json`
From CLINE's "MCP Servers" settings, select the "Installed" tab and edit the `cline_mcp_settings.json` file in Configure MCP Servers.
```json
{
"mcpServers": {
"coding_guidelines": {
"command": "npx",
"args": ["-y", "@d-zero/mcp-server"],
"env": {
"FIGMA_ACCESS_TOKEN": "abcd_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
},
"disabled": false,
"autoApprove": []
}
}
}
```
If the execution of the `@d-zero/mcp-server` package fails, please install it globally and specify the full path ([Reference Issue](https://github.com/cline/cline/issues/1247)).
You can obtain the Figma access token from https://www.figma.com/developers/api#access-tokens.
## Contribution
The development of this MCP server requires a `.env` file.
```env
# Figma API settings
FIGMA_ACCESS_TOKEN=abcd_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
# Test Figma URL
FIGMA_TEST_URL=https://www.figma.com/file/abcdef123456/FileName
```
Connection Info
You Might Also Like
MarkItDown MCP
Converting files and office documents to Markdown.
Time
Obtaining current time information and converting time between different...
Filesystem
Model Context Protocol Servers
Sequential Thinking
Offers a structured approach to dynamic and reflective problem-solving,...
Git
Model Context Protocol Servers
Context 7
Context7 MCP Server -- Up-to-date code documentation for LLMs and AI code editors