wordpress-mcp-server
by stefans71
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required:
- host
- port
properties:
host:
type: string
description: The host address for the MCP server.
port:
type: number
description: The port number for the MCP server.
commandFunction:
# A function that produces the CLI command to start the MCP on stdio.
|-
config => ({ command: 'uvicorn', args: ['mcp_git_ingest.main:mcp.run', '--host', config.host, '--port', config.port.toString()] })