S

Sketch Context

Bridges Sketch design files with development workflows through dual-component architecture, enabling...

4 views
0 installs
Updated Oct 31, 2025
Not audited
Bridges Sketch design files with development workflows through dual-component architecture, enabling file parsing, component extraction, layer management, and real-time design element creation directly from natural language commands.
  1. Authenticate with Sketch Cloud

    • Use your Sketch Cloud credentials (email and password) to generate an API access token.
    • Run the following command in your terminal, replacing YOUR_EMAIL and YOUR_PASSWORD with your Sketch Cloud account credentials:
      curl -X "POST" "https://auth.sketch.cloud/oauth/token" \
        -H 'Content-Type: application/json' \
        -d '{
          "email": "YOUR_EMAIL",
          "password": "YOUR_PASSWORD",
          "grant_type": "password"
        }'
      
  2. Retrieve the Access Token

    • After running the command, the response will include an access_token. This is your Sketch API key.
  3. Fill in the FastMCP Connection Interface

    • Go to the FastMCP interface where environment variables are requested.
    • Locate the entry for SKETCH_API_KEY.
    • Copy and paste your access_token value into the SKETCH_API_KEY field.
  4. (Optional) Store for Local Development

    • If developing locally, you can also place your access token in a .env file as follows:
      SKETCH_API_KEY=<your-access-token>
      
    • Make sure your .env file is added to .gitignore to prevent accidental exposure.
  5. If Your Token Expires

    • Use the refresh_token from the authentication response to get a new access token, following the Sketch API documentation.

Note: Always keep your API key secure and do not share it in public places. If you believe your token has been compromised, revoke it and generate a new one.

Quick Start

View on GitHub

More for Developer Tools

View All →

More for Design Tools

View All →

Similar MCP Servers

S

Sketch

Processes Sketch design files by extracting internal structure, analyzing design elements, and rendering visual components as SVG images for design-to-code workflows and automated design analysis.

AI and Machine Learning Developer Tools

Report Issue

Thank you! Your issue report has been submitted successfully.