Lawrence's Personal MCP Server
Allows fetching Figma file structure, component details, design tokens, and searching components.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Lawrence's Personal MCP Servergenerate a React button component from my Figma design"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Lawrence's Personal MCP Server
A Model Context Protocol (MCP) server providing development tools for Figma integration, accessibility checking, and code generation.
Features
🎨 Figma Tools
figma_get_file- Fetch Figma file structure and metadatafigma_get_component- Get detailed component informationfigma_extract_design_tokens- Extract colors, typography, and spacingfigma_search_components- Search for components by name
♿ Accessibility Tools
a11y_audit_component- Audit components for WCAG compliancea11y_suggest_improvements- Get accessibility improvement suggestions
🔧 Code Generation Tools
codegen_react_component- Generate React components from Figmacodegen_design_tokens- Generate CSS/TypeScript design tokens
Related MCP server: Figma MCP Server
Setup
1. Install Dependencies
npm install2. Configure Environment
Copy .env.example to .env and add your Figma access token:
cp .env.example .envEdit .env:
FIGMA_ACCESS_TOKEN=your_figma_personal_access_token3. Build
npm run buildUsage with Claude Desktop
Add this to your Claude Desktop configuration file:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"lawrence-mcp": {
"command": "node",
"args": ["/Users/lawrence/dev/mcp-server/dist/index.js"]
}
}
}Then restart Claude Desktop.
Development
Run in watch mode
npm run watchRun directly with tsx
npm run devAdding New Tools
Create a new tool file in
src/tools/Define your tools array and handler function
Import and add to
src/index.ts
Example:
// src/tools/my-tools.ts
export const myTools: Tool[] = [
{
name: 'my_tool',
description: 'Does something cool',
inputSchema: { /* ... */ }
}
];
export async function handleMyTool(name: string, args: any) {
// Implementation
}License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables bidirectional synchronization between IDEs and Figma for Design System management, allowing developers to generate React components and synchronize design tokens, icons, and components across platforms.Last updated1
- AlicenseBqualityDmaintenanceEnables interaction with Figma files through tools that list projects/files, fetch design data, and generate React+Vite frontend code directly from Figma frames.Last updated41,819MIT
- FlicenseAqualityCmaintenanceProvides AI assistants with frontend development tools including component scaffolding, bundle analysis, accessibility checks, and responsive design guidance. Enables automated generation of React components with tests and stories, bundle optimization recommendations, and WCAG compliance fixes.Last updated6
- AlicenseAqualityDmaintenanceConverts Figma designs into production-ready React components with design token extraction, widget registry integration, and micro-frontend module generation.Last updated3661MIT
Related MCP Connectors
Design-system contract verification, scoring, and review tools for AI agents.
Turn any live website into brand colors, fonts, design tokens, SVGs, Lottie and paste-ready code.
On-demand drift checks: declared CSS color, radius, spacing & type vs your own tokens or a pack
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/MyLightIsOn/mcp-servers'
If you have feedback or need assistance with the MCP directory API, please join our Discord server