SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill effortless-mcp명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| Use when this capability is needed.
> Use when this capability is needed.
Review architecture and API design for the vfs-s3 project. Use when the user mentions @architect, asks to review an issue's design, discuss module boundaries, API shape, or architectural decisions for vfs-s3. Also trigger when the user wants to create an ADR (Architecture Decision Record) or evaluate a technical approach for the project. Intended for dispatch from Codex automation or Claude routines; GitHub trigger phrase: @vfs-s3-bot please prepare design doc Use when this capability is needed.
| name | effortless-mcp |
| description | > Use when this capability is needed. |
A versioned ssotme:// tool deployed to Control Plane. Speaks the Model Context Protocol over streamable HTTP (default) or stdio. Every active transpiler in the baked catalog snapshot becomes an MCP tool; every text file under each skill folder becomes an MCP resource.
| What | Where |
|---|---|
| Deployed (HTTP) | https://effortless-mcp-server-v2026-05-02-1329-cmvbd4phczmeg.7pktzg2z971j0.cpln.app/mcp |
| Source | Versioned-Stable-SSoTme-Tools/tools/effortless/mcp-server/ |
| Local dev port | 30051 |
| Browser explorer | <base>/explorer (single-page UI that calls /mcp from the browser) |
The deployed URL is version-pinned — bumping versions publishes a new URL, and the previous URL keeps working until clients are migrated.
Tools (callable via tools/call):
| Tool | What it does |
|---|---|
effortless_ping | Health/echo. Returns server version + your message. Use to verify wiring. |
effortless_build | Shells out to the effortless CLI to run a project pipeline. Inputs: projectDir, includeDisabled (the -id flag). |
query_rulebook | Structured queries against an effortless-rulebook.json. Inputs: input (path), query (tables / schema / relationships / calculated_fields / field / dag), optional table / field. |
validate_dag | DAG integrity check on an effortless-rulebook.json. Catches cycles, broken FK targets, missing Name fields, naming-convention violations. |
<transpiler> (~54) | One auto-generated tool per active transpiler in the baked catalog snapshot. Schemas come from the Airtable Parameter table. POSTs directly to the transpiler's Control Plane URL — does not shell out to the CLI. |
Resources (read via resources/read):
effortless://skills/index — list of all skills in the baked snapshot.effortless://skills/<name> — manifest for one skill.effortless://skills/<name>/<file> — every text file under that skill folder.The baked skill snapshot is a frozen copy of github.com/effortlessapi/effortless-claude/skills/ taken at image build time.
Already wired at user level if you see mcp__effortless-mcp__* tools in the deferred list. To configure manually, add to ~/.claude.json under the appropriate project (or the user-level block):
{
"mcpServers": {
"effortless-mcp": {
"type": "http",
"url": "https://effortless-mcp-server-v2026-05-02-1329-cmvbd4phczmeg.7pktzg2z971j0.cpln.app/mcp"
}
}
}
Restart Claude Code (or /mcp to inspect). Tool names will appear as mcp__effortless-mcp__effortless_ping, etc.
{
"mcpServers": {
"effortless-mcp": {
"url": "https://effortless-mcp-server-v2026-05-02-1329-cmvbd4phczmeg.7pktzg2z971j0.cpln.app/mcp",
"transport": "streamable-http"
}
}
}
POST /run with {"clientType": "claude-code" | "cursor" | "windsurf" | ...} returns a fileset including a pre-wired settings snippet. Use this when wiring a new client type rather than guessing the schema.
BASE='https://effortless-mcp-server-v2026-05-02-1329-cmvbd4phczmeg.7pktzg2z971j0.cpln.app'
curl -s "$BASE/healthz" # liveness
curl -s "$BASE/_meta" # version + protocol metadata
curl -s -X POST -H 'Content-Type: application/json' -d '{}' "$BASE/run" | jq .summary
In Claude Code: ask "Run effortless_ping with message 'hello'." — should return JSON with the server version.
The MCP server lives as a ssotme:// versioned tool at tools/effortless/mcp-server/. Local dev reads skills from the sibling effortless-claude/skills/ repo directly (no bake step needed); the deployed image bakes a snapshot.
cd <repo>/Versioned-Stable-SSoTme-Tools/tools/effortless/mcp-server
./scripts/bake-catalog.sh # workload/catalog.json (homedir CLI cache → snapshot)
./start.sh # HTTP on :30051
./start.sh --stdio # stdio mode (for clients that spawn a child process)
start.sh requires Node ≥ 18. It tries nvm use 20 automatically if your default is older. Port-squatters on :30051 get killed.
To point a local Claude Code at the dev server instead of the deployed one:
{
"mcpServers": {
"effortless-mcp-local": {
"type": "http",
"url": "http://localhost:30051/mcp"
}
}
}
Through the transpiler-server UI at http://localhost:3000, not the cpln CLI directly. The flow:
./scripts/bake-catalog.sh — freeze the desired catalog snapshot../scripts/bake-skills.sh — freeze the desired effortless-claude/skills/ snapshot.vYYYY.MM.DD.HHMM mirrored across name, version, names.*, metaData.versionNumber, metaData.createdAt, metaData.createdOn).workload/package.json version (semver, parallel to the timestamp).effortless/effortless/mcp-server → Publish New Version. The UI runs docker build, pushes to the Control Plane org, applies cpln/workload.yaml, and inserts a TranspilerVersion row in Airtable base app1dOUUtasVF6wc2.curl <new-url>/_meta. Update the deployed URL in ~/.claude.json and any other client configs.The previous version stays addressable at its pinned URL — existing clients keep working until migrated.
| Goal | Use |
|---|---|
| Run a project's full build pipeline | effortless_build (or effortless build from a shell — same effect) |
| Call one transpiler in isolation | mcp__effortless-mcp__<transpiler> (direct HTTP to Control Plane — no local CLI needed) |
| Inspect rulebook structure cheaply | query_rulebook (faster + smaller-context than reading the JSON) |
| Sanity-check rulebook before commit | validate_dag |
| Scalar field add / CRUD | Airtable REST API (see effortless-airtable) — not the MCP transpiler tools |
| Formula / lookup / rollup / new table | OMNI via Playwright (see effortless-airtable-omni) |
The MCP server's transpiler tools are equivalent in effect to running the corresponding effortless <transpiler> CLI command, but they POST directly to Control Plane — useful when the CLI isn't installed (Cursor on a teammate's laptop, ChatGPT in the browser, etc.).
effortless-cli — the CLI binary; complementary surface over the same catalog.effortless-pipeline — what effortless_build actually orchestrates.effortless-query — local one-liners equivalent to query_rulebook.effortless-diagnostics — what validate_dag is checking for.effortless-claude-updates — for editing the skill set that this server exposes as resources.Source: EffortlessAPI/effortless-claude — distributed by TomeVault.