Skip to main content

use-mcp

Utilize tools of Model Context Protocol (MCP) servers

Zur Installation springen

Quellinformationen

Repository
LongLeo287/SEOSONA-OS
Letzte Quellaktivität
4. August 2026 um 05:01
Erkannte Sprache von SKILL.md
Englisch
Sterne
2
Forks
1

Installationsoptionen

Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.

Quelldateien prüfen

Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.

SKILL.md wird angezeigt

SKILL.md
Quellanweisungen · Schreibgeschützte Vorschau
name
use-mcp
description
Utilize tools of Model Context Protocol (MCP) servers
argument-hint
[task]
metadata
{"author":"claudekit","version":"1.0.0"}
Execute MCP operations via **Gemini CLI** to preserve context budget. ## Execution Steps 1. **Execute task via Gemini CLI** (using stdin pipe for MCP support): ```bash # IMPORTANT: Use stdin piping, NOT -p flag (deprecated, skips MCP init) echo "$ARGUMENTS. Return JSON only per GEMINI.md instructions." | gemini -y -m gemini-2.5-flash ``` 2. **Fallback to mcp-manager subagent** (if Gemini CLI unavailable): - Use `mcp-manager` subagent to discover and execute tools - If the subagent got issues with the scripts of `mcp-management` skill, use `mcp-builder` skill to fix them - **DO NOT** create ANY new scripts - The subagent can only use MCP tools if any to achieve this task - If the subagent can't find any suitable tools, just report it back to the main agent to move on to the next step ## Important Notes - **MUST use stdin piping** - the deprecated `-p` flag skips MCP initialization - Use `-y` flag to auto-approve tool execution - **GEMINI.md auto-loaded**: Gemini CLI automatically loads `GEMINI.md` from project root, enforcing JSON-only response format - **Parseable output**: Responses are structured JSON: `{"server":"name","tool":"name","success":true,"result":<data>,"error":null}` ## Anti-Pattern (DO NOT USE) ```bash # BROKEN - deprecated -p flag skips MCP server connections! gemini -y -m gemini-2.5-flash -p "..." ```
Auf GitHub ansehen