diff --git a/Dockerfile b/Dockerfile index aa6ebc0..edeb599 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,4 @@ +# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config FROM ghcr.io/astral-sh/uv:python3.10-bookworm-slim AS uv WORKDIR /app @@ -25,4 +26,4 @@ ENV PATH="/app/.venv/bin:$PATH" COPY --from=uv /app /app/ ENV PYTHONPATH=/app -ENTRYPOINT ["mcp-domain-availability"] \ No newline at end of file +ENTRYPOINT ["mcp-domain-availability"] diff --git a/README.md b/README.md index 8d47205..15edbf7 100644 --- a/README.md +++ b/README.md @@ -116,6 +116,14 @@ If you already have other MCPs configured, simply add the "mcp-domain-availabili } ``` +### Installing via Smithery + +To install mcp-domain-availability for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@imprvhub/mcp-domain-availability): + +```bash +npx -y @smithery/cli install @imprvhub/mcp-domain-availability --client claude +``` + #### Manual Installation For development or local testing: diff --git a/smithery.yaml b/smithery.yaml new file mode 100644 index 0000000..86d1e3c --- /dev/null +++ b/smithery.yaml @@ -0,0 +1,12 @@ +# Smithery configuration file: https://smithery.ai/docs/build/project-config + +startCommand: + type: stdio + commandFunction: + # A JS function that produces the CLI command based on the given config to start the MCP on stdio. + |- + (config) => ({ command: 'mcp-domain-availability', args: [] }) + configSchema: + # JSON Schema defining the configuration options for the MCP. + {} + exampleConfig: {}