Help us improve
Share bugs, ideas, or general feedback.
From frontend-craft
Connects to a local HTTP MCP server at http://localhost:31126/mcp (Sketch) via mcp-remote with --allow-http. Likely provides design tools, resources, and prompts for Sketch files. Requires local server running.
npx claudepluginhub bovinphang/frontend-craftCopy this JSON into your .mcp.json to enable this server
Add to your .mcp.json:
{
"mcpServers": {
"sketch": {
"command": "npx",
"args": [
"-y",
"sketch-mcp-server",
"--stdio"
],
"env": {
"SKETCH_API_KEY": "${SKETCH_API_KEY}"
}
}
}
}Replace placeholder values for: SKETCH_API_KEY
Review these signals before enabling this server
This MCP server needs API keys or credentials. Configure them in your environment before use.
This server connects to external services. Review the URLs it accesses before enabling.
Server configuration and connection parameters
npxCommand-line arguments passed to the server process
Environment variables set when the server starts
SKETCH_API_KEY=${SKETCH_API_KEY}Sensitive values you must provide — never committed to source control
Share bugs, ideas, or general feedback.