Skip to main content
ClaudeWave

Remote MCP server for Glasswarp — observe and control real Windows PCs

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptNOASSERTIONActualizado 2d ago
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/glasswarp/mcp-server
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "mcp-server": {
      "command": "node",
      "args": ["/path/to/mcp-server/dist/index.js"],
      "env": {
        "GLASSWARP_API_BASE_URL": "<glasswarp_api_base_url>"
      }
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/glasswarp/mcp-server and follow its README for install instructions.
Detected environment variables
GLASSWARP_API_BASE_URL
Casos de uso

Resumen de MCP Servers

# Glasswarp MCP server

Remote MCP endpoint for Glasswarp — agents observe and control real Windows machines; you supply the task logic.

**Install / connect:** [docs.glasswarp.com/get-started/mcp](https://docs.glasswarp.com/get-started/mcp) · API key from the [console](https://www.glasswarp.com/console).

**Open:** this MCP server + the [Python SDK](https://github.com/glasswarp/python-sdk). **Not open:** the Windows host agent and the Glasswarp platform (gateway, console, billing).

---

Remote [Model Context Protocol](https://modelcontextprotocol.io) server — a thin
translation layer over the Platform API (`/v1/*`). Gives MCP clients eyes and
hands on paired Windows rigs; the client/model supplies the brain.

**Design:** [`docs/MCP_SERVER_DESIGN.md`](https://docs.glasswarp.com/get-started/mcp)

## Auth

```
Authorization: Bearer <glasswarp_api_key>
```

Create a key at [glasswarp.com/console](https://www.glasswarp.com/console).
Full keys are never logged (prefix/suffix redaction only).

## Run locally

```bash
cd mcp-server
npm install
npm run dev
# POST http://127.0.0.1:8787/mcp
```

Point at a non-prod API:

```bash
GLASSWARP_API_BASE_URL=http://127.0.0.1:8080 npm run dev
```

## Cursor / Claude

**Production URL:** `https://mcp.glasswarp.com/mcp`  
**Auth:** `Authorization: Bearer <your real gw_… key>` (never the placeholder from docs)

### Cursor (recommended — stdio bridge)

Current Cursor builds often fail remote Streamable HTTP with `fetch failed`.
Bridge over stdio with [`mcp-remote`](https://www.npmjs.com/package/mcp-remote).

**Important:** use an **absolute** `npx` path for your OS. Bare `npx` inside
Cursor often fails with `ENOENT .../Cursor.app/.../resources/lib`.

| OS | `command` | `PATH` (env) |
| --- | --- | --- |
| macOS Apple Silicon | `/opt/homebrew/bin/npx` | `/opt/homebrew/bin:/usr/bin:/bin` |
| macOS Intel | `/usr/local/bin/npx` | `/usr/local/bin:/usr/bin:/bin` |
| Windows | `npx` (or full `npx.cmd`) | (default Node path) |
| Linux | `/usr/bin/npx` (or your nvm path) | `/usr/bin:/bin` |

Example (macOS Apple Silicon):

```json
{
  "mcpServers": {
    "glasswarp": {
      "command": "/opt/homebrew/bin/npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.glasswarp.com/mcp",
        "--header",
        "Authorization:${GLASSWARP_AUTH}"
      ],
      "env": {
        "PATH": "/opt/homebrew/bin:/usr/bin:/bin",
        "GLASSWARP_AUTH": "Bearer gw_live_sk_REPLACE_WITH_YOUR_KEY"
      }
    }
  }
}
```

Restart MCP / reload Cursor, then call `list_rigs`.

### Ways to run agents (every client)

On initialize, the server sends **`instructions`**: short → MCP; longer →
**offer** scaffold/`glasswarp-demo` when code-capable (never impose); chat-only
stays on MCP. Also:

| Surface | Role |
| --- | --- |
| Prompt `best_practices` | Same guide on demand |
| Resource `glasswarp://guide/ways-to-run-agents` | Markdown copy |
| Tools `list_demos` / `get_demo` | Showcase run contracts (no solver execution) |
| Resources `glasswarp://demos`, `glasswarp://demos/{id}` | Same cards |
| `demo_minesweeper` / `demo_mona_lisa` | Offer `glasswarp-demo …` |

```bash
pip install "glasswarp[demos]"
glasswarp-demo minesweeper
```

Docs: https://docs.glasswarp.com/guides/ways-to-run-agents

### Direct remote URL (when the client supports headers)

```json
{
  "mcpServers": {
    "glasswarp": {
      "url": "https://mcp.glasswarp.com/mcp",
      "headers": {
        "Authorization": "Bearer gw_live_sk_REPLACE_WITH_YOUR_KEY"
      }
    }
  }
}
```

## Tools

`list_rigs`, `start_session`, `end_session`, `observe`, `click_target`,
`click_xy`, `type_text`, `send_keys`, `drag`, `scroll`, `launch_app`,
`get_live_view_url`, `get_session_status`.

## Tests

```bash
npm test
npm run build
```
ai-agentscomputer-usedesktop-automationmcpwindows-automation

Lo que la gente pregunta sobre mcp-server

¿Qué es glasswarp/mcp-server?

+

glasswarp/mcp-server es mcp servers para el ecosistema de Claude AI. Remote MCP server for Glasswarp — observe and control real Windows PCs Tiene 0 estrellas en GitHub y se actualizó por última vez 2d ago.

¿Cómo se instala mcp-server?

+

Puedes instalar mcp-server clonando el repositorio (https://github.com/glasswarp/mcp-server) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar glasswarp/mcp-server?

+

glasswarp/mcp-server aún no ha sido auditado por nuestro agente de seguridad. Revisa el repositorio original en GitHub antes de usarlo en producción.

¿Quién mantiene glasswarp/mcp-server?

+

glasswarp/mcp-server es mantenido por glasswarp. La última actividad registrada en GitHub es de 2d ago, con 0 issues abiertos.

¿Hay alternativas a mcp-server?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega mcp-server en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: glasswarp/mcp-server
[![Featured on ClaudeWave](https://claudewave.com/api/badge/glasswarp-mcp-server)](https://claudewave.com/repo/glasswarp-mcp-server)
<a href="https://claudewave.com/repo/glasswarp-mcp-server"><img src="https://claudewave.com/api/badge/glasswarp-mcp-server" alt="Featured on ClaudeWave: glasswarp/mcp-server" width="320" height="64" /></a>

Más MCP Servers

Alternativas a mcp-server