SugarSpace MCP

Give your AI assistant the power to see and interact with your screen

What Your AI Can Do

🎯
Find UI Elements
"Click the settings button" → AI locates it and returns coordinates
📸
Take Screenshots
AI captures your screen when needed for analysis
🤖
Perform Actions
AI can click, type, scroll, and navigate your applications

Example

You:
"Open Settings via UI"
AI:
✓ Used tool: sugarspace.take_screenshot
✓ Used tool: sugarspace.find_element → "Apple menu icon"
✓ Used tool: sugarspace.click → [20, 15]
✓ Used tool: sugarspace.find_element → "Settings"
✓ Used tool: sugarspace.click → [145, 320]
Settings opened successfully!

Setup Instructions

💨 Windsurf IDE

  1. Open Windsurf Settings → MCP Servers
  2. Click "Add Server"
  3. Copy and paste this configuration:
{
  "mcpServers": {
    "sugarspace": {
      "serverUrl": "https://api.staging.sugarspace.io/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR_API_TOKEN>",
        "Content-Type": "application/json"
      }
    }
  }
}

🖱️ Cursor IDE

  1. Open Cursor Settings → Features → MCP
  2. Edit MCP configuration file
  3. Add this to your config:
{
  "mcpServers": {
    "sugarspace": {
      "serverUrl": "https://api.staging.sugarspace.io/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR_API_TOKEN>",
        "Content-Type": "application/json"
      }
    }
  }
}

🤖 Claude Desktop

  1. Open Claude Settings → Developer
  2. Edit MCP settings file
  3. Add this configuration:
{
  "mcpServers": {
    "sugarspace": {
      "serverUrl": "https://api.staging.sugarspace.io/mcp",
      "headers": {
        "Authorization": "Bearer <YOUR_API_TOKEN>",
        "Content-Type": "application/json"
      }
    }
  }
}

🔑 Get Your API Token

You need a SugarSpace account to use this MCP server:

  1. Sign up at staging.sugarspace.io
  2. Go to Settings → API Tokens
  3. Generate a new token
  4. Replace <YOUR_API_TOKEN> in the config above

Available Tools

take_screenshot

Capture current screen state

find_element

Locate UI element by description

click

Click at coordinates

type_text

Type text at cursor position

scroll

Scroll up or down

hover

Move cursor to coordinates

Powered by SugarSpace

View MCP Manifest