bootstrap-python-mcp-service
SKILL.md
Bootstrap Python MCP Service
Purpose
Create FastMCP starter layouts using one direct shell entrypoint backed by the shared bootstrap-uv-python-workspace scaffolding scripts plus deterministic MCP overlay logic.
When To Use
- Use this skill for new FastMCP server scaffolds.
- Use this skill when the user wants OpenAPI or FastAPI-to-MCP mapping guidance alongside bootstrap.
- Recommend
bootstrap-python-servicewhen the user wants a FastAPI service but not an MCP server.
Single-Path Workflow
- Collect the required inputs:
namemodepath- optional
python,members,profile_map,force,initial_commit,no_git_init
- Run the canonical entrypoint:
scripts/init_fastmcp_service.sh --name <name> --mode <project|workspace> - Let the script delegate to the shared
bootstrap-uv-python-workspacescaffolding layer, then apply the FastMCP overlay. - Accept the built-in validation path:
uv run pytestuv run ruff check .uv run mypy .
- If the task starts from an existing API, optionally generate a mapping report with
uv run scripts/assess_api_for_mcp.py .... - Return the generated path plus the exact next-step commands emitted by the script.
Commands
# Project mode (default)
scripts/init_fastmcp_service.sh --name my-mcp-server
# Project mode with explicit options
scripts/init_fastmcp_service.sh --name my-mcp-server --mode project --python 3.13 --path /tmp/my-mcp-server
# Workspace mode with defaults (core-lib package + api-service service)
scripts/init_fastmcp_service.sh --name platform --mode workspace
# Workspace mode with explicit members and profile mapping
scripts/init_fastmcp_service.sh \
--name platform \
--mode workspace \
--members "core-lib,tools-service,ops-service" \
--profile-map "core-lib=package,tools-service=service,ops-service=service"
# Allow non-empty target directory
scripts/init_fastmcp_service.sh --name my-mcp-server --force
# Skip git initialization
scripts/init_fastmcp_service.sh --name my-mcp-server --no-git-init
# Create initial commit
scripts/init_fastmcp_service.sh --name my-mcp-server --initial-commit
# Generate MCP mapping guidance from OpenAPI
uv run scripts/assess_api_for_mcp.py --openapi ./openapi.yaml --out ./mcp_mapping_report.md
# Generate MCP mapping guidance from existing FastAPI app
uv run scripts/assess_api_for_mcp.py --fastapi app.main:app --out ./mcp_mapping_report.md
Inputs
name: requiredmode:projectorworkspace; defaults toprojectpath: optional target directory; defaults to./<name>python: optional Python version; defaults to3.13members: optional workspace member CSV for workspace modeprofile_map: optional workspace profile CSV for workspace modeforce: optional flag allowing non-empty target directoriesinitial_commit: optional flag creating an initial commit after a successful scaffoldno_git_init: optional flag disabling git initialization
Outputs
statussuccess: scaffold and built-in validation completedblocked: prerequisites or target-directory constraints prevented the runfailed: the script started but validation or generation failed
path_typeprimary: the canonical shell entrypoint completed
output- resolved project or workspace path
- emitted run commands
- emitted validation commands
- optional mapping-report path
Defaults
- mode:
project - Python version:
3.13 - quality tooling:
pytest,ruff,mypy - workspace default members:
core-lib,api-service - workspace default profiles: first member
package, remaining membersservice
Base UV/FastAPI Guidance
The shared scaffold basis follows uv FastAPI integration style:
uv add fastapi --extra standard
uv run fastapi dev app/main.py
This skill then overlays FastMCP dependencies and server files for MCP service members.
API Import Guidance
When starting from OpenAPI or FastAPI, bootstrap first, then map endpoints to MCP primitives:
- Generate mapping report with
scripts/assess_api_for_mcp.py. - Classify endpoints into
Resources,Tools, andPrompts. - Recommend RouteMaps/Transforms only when they improve usability.
- Keep bootstrap deterministic; defer heavy custom mapping unless requested.
FastMCP Docs Lookup
Use the fastmcp_docs MCP server for up-to-date framework details.
Suggested queries:
FastMCP quickstart server exampleFastMCP tools resources prompts best practicesFastMCP RouteMap TransformFastMCP from OpenAPIFastMCP from FastAPI
Guardrails
- Refuse non-empty target directories unless
--forceis set. - Require at least one service profile member in workspace mode.
- Require
uvandgitunless git initialization was explicitly disabled. - Fail when workspace-only options are used in project mode.
- Fail when
--initial-commitis combined with--no-git-init.
Fallbacks and Handoffs
- The preferred path is always
scripts/init_fastmcp_service.sh. - Use
bootstrap-python-servicewhen the user wants FastAPI-only output. - Use
bootstrap-uv-python-workspacedirectly only when FastMCP-specific behavior is not wanted.
Automation Suitability
- Codex App automation: Medium. Useful for recurring FastMCP scaffold checks and mapping-assessment checks.
- Codex CLI automation: High. Strong fit for CI-style scaffold validation.
Codex App Automation Prompt Template
Use $bootstrap-python-mcp-service.
Scope boundaries:
- Work only inside <REPO_PATH>.
- Create or validate scaffold output only in <TARGET_PATH>.
- Restrict work to scaffold generation, optional mapping report generation, and verification.
Task:
1. If <MODE:PROJECT|WORKSPACE> is PROJECT, run:
`scripts/init_fastmcp_service.sh --name <MCP_SERVICE_NAME> --mode project --path <TARGET_PATH> --python <PYTHON_VERSION> <FORCE_FLAG> <GIT_INIT_MODE>`
2. If <MODE:PROJECT|WORKSPACE> is WORKSPACE, run:
`scripts/init_fastmcp_service.sh --name <MCP_SERVICE_NAME> --mode workspace --path <TARGET_PATH> --python <PYTHON_VERSION> --members "<MEMBERS_CSV>" --profile-map "<PROFILE_MAP>" <FORCE_FLAG> <GIT_INIT_MODE>`
3. If <GENERATE_MAPPING_REPORT:TRUE|FALSE> is TRUE:
- If <MAPPING_INPUT_MODE:NONE|OPENAPI|FASTAPI_IMPORT> is OPENAPI, run:
`uv run scripts/assess_api_for_mcp.py --openapi <MAPPING_INPUT_PATH> --out <TARGET_PATH>/mcp_mapping_report.md`
- If <MAPPING_INPUT_MODE:NONE|OPENAPI|FASTAPI_IMPORT> is FASTAPI_IMPORT, run:
`uv run scripts/assess_api_for_mcp.py --fastapi <MAPPING_INPUT_PATH> --out <TARGET_PATH>/mcp_mapping_report.md`
4. Run verification checks in <TARGET_PATH>:
- `uv run pytest`
- `uv run ruff check .`
- `uv run mypy .`
Output contract:
1. STATUS: PASS or FAIL
2. COMMANDS: exact commands executed
3. RESULTS: concise outcomes for scaffold and checks
4. If report generated: include report path
5. If FAIL: provide likely root cause and minimal remediation
Codex CLI Automation Prompt Template
codex exec --full-auto --sandbox workspace-write --cd "<REPO_PATH>" "<PROMPT_BODY>"
<PROMPT_BODY> template:
Use $bootstrap-python-mcp-service.
Scope is limited to scaffold generation in <TARGET_PATH>, optional mapping report generation, and verification checks.
Run only commands needed for this flow, then return STATUS, exact command transcript, concise results, and minimal remediation if failures occur.
Customization Placeholders
<REPO_PATH><MCP_SERVICE_NAME><MODE:PROJECT|WORKSPACE><TARGET_PATH><PYTHON_VERSION><MEMBERS_CSV><PROFILE_MAP><FORCE_FLAG><GIT_INIT_MODE><MAPPING_INPUT_MODE:NONE|OPENAPI|FASTAPI_IMPORT><MAPPING_INPUT_PATH><GENERATE_MAPPING_REPORT:TRUE|FALSE>
Interactive Customization Workflow
- Ask for mode, name, path, Python version, and git/force flags.
- If workspace mode, also ask for members and profile map.
- Return both:
- A YAML profile for durable reuse.
- The exact scaffold command to run.
- Use this precedence order:
- CLI flags
--configprofile file.codex/profiles/bootstrap-python-mcp-service/customization.yaml~/.config/gaelic-ghost/python-skills/bootstrap-python-mcp-service/customization.yaml- Script defaults
- If users want temporary reset behavior:
--bypassing-all-profiles--bypassing-repo-profile--deleting-repo-profile
- If users provide no customization or profile files, keep existing script defaults unchanged.
- See
references/interactive-customization.mdfor schema and examples.
References
references/mcp-mapping-guidelines.mdreferences/fastmcp-docs-lookup.mdreferences/customization.mdreferences/interactive-customization.md
Script Inventory
scripts/init_fastmcp_service.shscripts/assess_api_for_mcp.py- Delegates to the shared workspace bootstrap scripts shipped by
bootstrap-uv-python-workspace.
Assets
assets/README.md.tmpl
Weekly Installs
11
Repository
gaelic-ghost/py…n-skillsGitHub Stars
1
First Seen
Feb 27, 2026
Security Audits
Installed on
codex11
github-copilot10
kimi-cli10
gemini-cli10
cursor10
opencode10