home / skills / sounder25 / google-antigravity-skills-library / 16_mcp_connector
This skill exposes an MCP server interface to Antigravity, enabling external agents to invoke skills as native tools.
npx playbooks add skill sounder25/google-antigravity-skills-library --skill 16_mcp_connectorReview the files below or copy the command above to add this skill to your agents.
---
name: MCP Connector
description: Provides a Model Context Protocol (MCP) server interface to the skills library, allowing any MCP-compliant agent (e.g. Claude Desktop) to invoke Antigravity skills as native tools.
version: 1.0.0
author: Antigravity Skills Library
created: 2026-01-16
leverage_score: 5/5
---
# SKILL-016: MCP Connector
## Overview
This skill is a **Meta-Skill**. It wraps the entire library in an MCP Server. This enables external agents to "plug in" to Antigravity capabilities without knowing the underlying PowerShell scripts.
## Trigger Phrases
- `start mcp server`
- `connect skills to claude`
## Inputs
None (Service).
## Outputs
- Exposes Tools via stdio:
- `list_skills()`
- `run_skill(id, args)`
- `read_skill_spec(id)`
## Preconditions
- Python 3.10+
- `mcp` package installed
## Implementation
See `server.py`.
## Configuration
Add the following to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"antigravity-skills": {
"command": "python",
"args": [
"full/path/to/server.py"
]
}
}
}
```
This skill exposes the entire Antigravity skills library as an MCP (Model Context Protocol) server so MCP-compliant agents can call skills as native tools. It acts as a meta-skill wrapper, translating MCP requests to the underlying PowerShell-based skill implementations. The server is lightweight and intended to run as a persistent service that agents connect to over stdio.
The MCP Connector launches a Python-based MCP server that registers available skills and their specs, then exposes a small set of tool calls (list_skills, run_skill, read_skill_spec) over stdio. Incoming MCP calls are validated, mapped to the PowerShell skill implementations, and executed with deterministic execution and safety checks enforced by the library. The server requires Python 3.10+ and the mcp package to operate and is configured as an MCP server entry for external clients.
What are the prerequisites to run the MCP Connector?
Install Python 3.10 or newer and the mcp package. Ensure the PowerShell runtime and the Antigravity skill library are present on the host.
How does the connector keep execution safe?
It leverages the library’s deterministic execution, tested safety gates, impasse detection, and failure postmortem meta-skills to validate and monitor all invoked actions.