# MCP Setup

> Spawns and configures Model Context Protocol (MCP) integrations for ShizukuPlus.

- Skill: `thejaustin/mcp-setup` (Agent Skill)
- Install (CLI): `npx skillmds@latest add thejaustin/mcp-setup`
- Raw SKILL.md: https://api.skillmd.com/api/skills/thejaustin/mcp-setup/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- License: Complete terms in LICENSE
- Author: thejaustin (https://skillmd.com/u/thejaustin)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/thejaustin/mcp-setup

---

# MCP Configuration Setup Skill

This skill ensures standard MCP servers are available for context augmentation.

## Execution Steps:

1. **Initialize Global Config:**
   Antigravity uses a standard `mcp.json` or runs them directly via `npx`.
   To immediately spawn the Google Developer documentation or GitHub MCP inside your shell context during a task, invoke them via the `run_command` tool in the background:
   
   ```bash
   npx -y @modelcontextprotocol/server-github
   ```

2. **Persistent Setup:**
   If the user has a central configuration file (e.g. Claude Desktop or similar client), append the following:
   ```json
   {
     "mcpServers": {
       "github": {
         "command": "npx",
         "args": ["-y", "@modelcontextprotocol/server-github"]
       },
       "google-maps": {
         "command": "npx",
         "args": ["-y", "@modelcontextprotocol/server-google-maps"]
       }
     }
   }
   ```

