Skip to content

Commit 879f715

Browse files
authored
Merge pull request #1 from imprvhub/smithery/config-d9tc
Deployment: Dockerfile and Smithery config
2 parents b09b27a + 499dba5 commit 879f715

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
12
FROM ghcr.io/astral-sh/uv:python3.10-bookworm-slim AS uv
23

34
WORKDIR /app
@@ -25,4 +26,4 @@ ENV PATH="/app/.venv/bin:$PATH"
2526
COPY --from=uv /app /app/
2627
ENV PYTHONPATH=/app
2728

28-
ENTRYPOINT ["mcp-domain-availability"]
29+
ENTRYPOINT ["mcp-domain-availability"]

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,14 @@ If you already have other MCPs configured, simply add the "mcp-domain-availabili
116116
}
117117
```
118118

119+
### Installing via Smithery
120+
121+
To install mcp-domain-availability for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@imprvhub/mcp-domain-availability):
122+
123+
```bash
124+
npx -y @smithery/cli install @imprvhub/mcp-domain-availability --client claude
125+
```
126+
119127
#### Manual Installation
120128

121129
For development or local testing:

smithery.yaml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Smithery configuration file: https://smithery.ai/docs/build/project-config
2+
3+
startCommand:
4+
type: stdio
5+
commandFunction:
6+
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
7+
|-
8+
(config) => ({ command: 'mcp-domain-availability', args: [] })
9+
configSchema:
10+
# JSON Schema defining the configuration options for the MCP.
11+
{}
12+
exampleConfig: {}

0 commit comments

Comments
 (0)