Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_creator_profile | Load the creator's persistent profile — their setup status, GitHub/PyPI usernames, and project history. Call this FIRST in every session. If the profile exists with setup_complete=true, skip all onboarding and go straight to building. |
| update_creator_profile | Update the creator's profile after setup steps or project creation. Call this after: setup completes, a project is published, or GitHub/PyPI info is learned. This persists across sessions so the user never repeats setup. |
| check_setup | Check the user's environment for required tools (uv, git, gh CLI, PyPI token). Call this after get_creator_profile if setup_complete is false. If everything is set up, skip beginner instructions and go straight to building. |
| check_pypi_name | Check if a package name is available on PyPI. Call this first before scaffolding. |
| scaffold_server | Scaffold a complete, runnable MCP server project. Pass the package name, description, and a JSON array of tool definitions. Each tool def: {name, description, parameters: [{name, type, required, description, default}], returns}. The generated server runs immediately with stub implementations. Set paid=true to add license key gating via the MCP Marketplace SDK. Set paid_tools to a JSON array of tool names to gate (omit to gate all). Set hosting="remote" for an SSE/HTTP server with Dockerfile (default: "local" for stdio). |
| add_tool | Add a new tool to an existing scaffolded MCP server. Pass the project directory and a JSON tool definition. Creates the tool module, service stub, test, and updates server.py. |
| build_package | Build the MCP server package using 'uv build'. Run this after implementing your tools. |
| publish_package | Publish the built package to PyPI using 'uv publish'. Requires a PyPI token — either pass it directly or set UV_PUBLISH_TOKEN env var. |
| setup_github | Initialize git, create a GitHub repo, and push the project. Requires the gh CLI to be installed and authenticated. Run this after publishing to PyPI so the repo URL can be included in the LAUNCHGUIDE. |
| generate_launchguide | Generate a LAUNCHGUIDE.md for MCP Marketplace submission. Creates a formatted file ready to submit at mcp-marketplace.io. Limits: tagline max 100 chars, features max 30 items, tags max 30. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |