# GlassMCP - Model Context Protocol Server

A production-ready Model Context Protocol (MCP) server for Windows automation,
designed to work seamlessly with AI agents and VS Code.

## Features

- **Window Management**: List, focus, minimize, maximize, and close windows
- **Safe Automation**: Controlled access to Windows system APIs
- **MCP Compatible**: Works with VS Code and other MCP-enabled tools
- **TypeScript Support**: Full type definitions included

## Quick Start

### Install

```bash
npm install -g @codai/glass-mcp
```

### Use in VS Code

Add to your VS Code settings.json:

```json
{
  "mcp": {
    "servers": {
      "GlassMCPServer": {
        "command": "npx",
        "args": ["@codai/glass-mcp@3.0.3"]
      }
    }
  }
}
```

### Available Tools

- `window_list` - List all open windows
- `window_focus` - Focus a window by title
- `window_minimize` - Minimize a window
- `window_maximize` - Maximize a window
- `window_close` - Close a window
- `window_get_info` - Get detailed window information

## License

MIT
