Skip to content
Open
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
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
FROM python:3.10-slim

# Set working directory
WORKDIR /app

# Copy project files
COPY pyproject.toml uv.lock README.md ./
COPY src ./src

# Install package
RUN pip install --no-cache-dir .

# Expose no ports, listens on stdio
ENTRYPOINT ["sherlock-mcp"]
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# sherlock-mcp MCP server
[![smithery badge](https://smithery.ai/badge/@Fewsats/sherlock-mcp)](https://smithery.ai/server/@Fewsats/sherlock-mcp)

Shelock Domains MCP server to buy & manage domains

Expand Down Expand Up @@ -68,6 +69,14 @@ On Windows: `%APPDATA%/Claude/claude_desktop_config.json`
```
</details>

### Installing via Smithery

To install Shelock Domains Server for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@Fewsats/sherlock-mcp):

```bash
npx -y @smithery/cli install @Fewsats/sherlock-mcp --client claude
```

## Development

### Building and Publishing
Expand Down Expand Up @@ -108,4 +117,4 @@ npx @modelcontextprotocol/inspector uv --directory /Users/pengren/go/github.com/
```


Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.
14 changes: 14 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Smithery configuration file: https://smithery.ai/docs/build/project-config

startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
default: {}
description: No configuration needed
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({command: 'sherlock-mcp', args: []})
exampleConfig: {}