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
MarkItDown-MCP is a lightweight server for converting URIs to Markdown.
servers
Model Context Protocol Servers
Time
A Model Context Protocol server for time and timezone conversions.
Filesystem
Node.js MCP Server for filesystem operations with dynamic access control.
Sequential Thinking
A structured MCP server for dynamic problem-solving and reflective thinking.
git
A Model Context Protocol server for Git automation and interaction.