smithery/sounder25

MCP Connector

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.

Installation

$ npx skills add smithery/sounder25 --skill mcp-connector

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/sounder25 · top by installs.

npx skills add smithery/sounder25

Browse all from smithery/sounder25

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
Declared agents antigravity

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,093 B
  • docs SUMMARY.md 201 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

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:

- listskills() - runskill(id, args) - readskillspec(id)

Preconditions

  • Python 3.10+
  • mcp package installed

Implementation

See server.py.

Configuration

Add the following to your claudedesktopconfig.json:

{
  "mcpServers": {
    "antigravity-skills": {
      "command": "python",
      "args": [
        "full/path/to/server.py"
      ]
    }
  }
}