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.
Latest Blog Posts
- 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