소스 정보
- 저장소
- benjam3n/reasoningtool
- 최근 소스 활동
- 2026년 3월 17일 15:35
- 감지된 SKILL.md 언어
- 영어
- 스타
- 9
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/benjam3n/reasoningtool --skill mcs-mcp-setup명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | mcs - MCP Setup |
| description | Configure MCP servers to enable autonomous GOSM execution capabilities |
| output | {"format":"prose"} |
Configure MCP servers to enable autonomous GOSM execution capabilities
Analyze which MCP servers are needed based on project requirements:
CORE CAPABILITIES:
COMMUNICATION CAPABILITIES:
For each capability, determine:
SAFETY: Document all capabilities requested and why. Human must approve external service integrations.
Check that required tools are available:
Node.js and npm:
Claude Code CLI:
Project directory:
Network access:
SAFETY: Never install packages without user awareness. Document all prerequisite checks.
Generate .mcp.json file for the project:
Base structure:
{
"mcpServers": {
// Servers will be added based on requirements
}
}
For each required capability, add server config:
GMAIL:
"gmail": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-gmail"],
"env": {
"GMAIL_OAUTH_PATH": "${HOME}/.config/gmail-mcp/credentials.json"
}
}
GOOGLE DRIVE:
"google-drive": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-gdrive"]
}
PLAYWRIGHT:
"playwright": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-playwright"]
}
SQLITE:
"sqlite": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-sqlite", "{database_path}"]
}
SAFETY: Configuration file should not contain secrets. Use environment variables for sensitive paths.
Guide user through Google OAuth setup (if Gmail/Drive needed):
Go to Google Cloud Console: URL: https://console.cloud.google.com/
Create or select project:
Enable required APIs:
Configure OAuth consent screen:
Create OAuth credentials:
Save credentials:
SAFETY: Credentials file contains sensitive data. Never share or expose credentials.json. Store in secure location with restricted permissions.
Complete authentication for each configured server:
GMAIL/DRIVE (OAuth flow):
PLAYWRIGHT (no auth needed):
SQLITE (no auth needed):
PHONE SERVICES (API key):
SAFETY: OAuth tokens are stored by the MCP server. Tokens can be revoked from Google account settings. API keys should be stored in environment variables, not files.
If SQLite is configured, create the schema for autonomous operations:
TABLES:
crossings (for Tunnel Vision example):
stakeholders:
communications:
letters:
automation_state:
SAFETY: Database should be in project directory only. Never create databases in system directories. Backup database before schema changes.
Test that all configured MCP servers are working:
List configured servers: Command: claude mcp list Expected: See all servers from .mcp.json
Test each server:
GMAIL:
GOOGLE DRIVE:
PLAYWRIGHT:
SQLITE:
Document any failures with error messages.
SAFETY: Test with non-destructive operations only. Use test data, not production data. Verify cleanup of test artifacts.
For services without MCP servers, create wrapper scripts:
scripts/send_email.py:
scripts/check_email.py:
scripts/send_sms.py:
scripts/ai_phone_call.py:
scripts/scrape_fra.py:
Each script should:
SAFETY: Scripts should validate inputs. Rate limiting should be implemented. All actions should be logged.
Create documentation for the MCP setup:
SETUP_COMPLETE.md:
TROUBLESHOOTING.md:
SECURITY.md:
Store in project's docs/ directory.
SAFETY: Documentation should not contain credentials. Reference environment variables and secure storage.