Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -25,4 +26,4 @@ ENV PATH="/app/.venv/bin:$PATH"
COPY --from=uv /app /app/
ENV PYTHONPATH=/app

ENTRYPOINT ["mcp-domain-availability"]
ENTRYPOINT ["mcp-domain-availability"]
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
12 changes: 12 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -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: {}