← スキル一覧に戻る

cursor-explorer-mcp
by sepiabrown
MCPs, hooks and settings for Claude Code
⭐ 0🍴 0📅 2025年12月25日
SKILL.md
name: cursor-explorer-mcp description: Use for token-expensive operations requiring multi-file analysis - codebase exploration, broad searches, architecture understanding, tracing flows, finding implementations across files. Uses MCP cursor-agent server (company pays) with clean async interface. Do NOT use for single-file analysis, explaining code already in immediate context, or pure reasoning tasks. allowed-tools: mcp__cursor_agent__cursor_agent_start, mcp__cursor_agent__cursor_agent_status, mcp__cursor_agent__cursor_agent_result, Read
Cursor Explorer (MCP)
Trigger immediately when you see:
- "Find where X is..." → cursor-agent
- "How does X work?" (multi-file) → cursor-agent
- "Trace the flow of..." → cursor-agent
- Manual approach needs 3+ file reads → cursor-agent
Skip for: single file, pure reasoning, code in context, 1-2 line answers
Workflow
# 1. Start query (batch multiple questions)
start = mcp__cursor_agent__cursor_agent_start({
"query": "Find where X is. Give file:line, code snippets, purpose."
})
query_id = json.loads(start)["query_id"]
# 2. Get result (blocks until done)
result = mcp__cursor_agent__cursor_agent_result({
"query_id": query_id,
"wait": True # Blocks automatically, no manual monitoring needed
})
output = json.loads(result)
# 3. If completed, present findings. If failed, fall back to Read/Grep.
Never retry on failure - just fall back to manual tools.
Query Tips
- Request file:line refs
- Ask for code snippets
- Batch related questions
- Be specific about format needed
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です