Skip to content

Conversation

smithery-ai[bot]
Copy link

@smithery-ai smithery-ai bot commented May 24, 2025

This PR adds files for deploying your MCP server on Smithery. After deployment, users can use your server over streamable HTTP (hosted on Smithery) without needing to install any dependencies.

Changes

  • Added Dockerfile to package your server for deployment.
  • Added Smithery Configuration file to specify how to start your server. See documentation.
  • Updated README to include installation command via Smithery and a popularity badge. Note that the command only works after the server is deployed on Smithery.

Server Details

Action Items

  • Build Passing: We verified that the Docker builds and your server starts up using an automated test.
  • Code Review: Please review the changes to ensure the configuration is accurate for your server.

These files were automatically generated and tested by Smithery

@SDGLBL SDGLBL requested a review from Copilot May 25, 2025 08:17
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds deployment support for the MCP Claude Code server on Smithery using Docker and a configuration file, and updates documentation to guide installation through Smithery.

  • Introduces a Dockerfile to containerize the server.
  • Adds smithery.yaml describing start commands and configuration schema.
  • Updates README.md with a Smithery badge and install instructions.

Reviewed Changes

Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.

File Description
smithery.yaml Defines startCommand, config schema, examples
README.md Adds badge and Smithery install instructions
Dockerfile Sets up Python container and default command
Comments suppressed due to low confidence (1)

README.md:54

  • [nitpick] Double-check that npx -y is a valid flag for the Smithery CLI; if the CLI uses a different confirm flag (e.g., --yes), update the command accordingly.
npx -y @smithery/cli install @SDGLBL/claude-code --client claude

description: LLM model name in LiteLLM format
agentMaxTokens:
type: number
default: null
Copy link

Copilot AI May 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The JSON Schema sets type: number but uses default: null, which violates the schema; consider allowing null in the type (e.g., type: ["number","null"]) or providing a numeric default.

Suggested change
default: null
default: 1024

Copilot uses AI. Check for mistakes.

WORKDIR /app

# Copy project files
COPY . .
Copy link

Copilot AI May 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] Consider adding a .dockerignore to exclude unnecessary files (e.g., docs, tests, local configs) from the build context to reduce image size and build time.

Copilot uses AI. Check for mistakes.

@@ -1,5 +1,7 @@
# MCP Claude Code

[![smithery badge](https://smithery.ai/badge/@SDGLBL/claude-code)](https://smithery.ai/server/@SDGLBL/claude-code)
Copy link

Copilot AI May 25, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[nitpick] The badge uses generic alt text; consider updating it to something more descriptive (e.g., Smithery deployment status badge).

Suggested change
[![smithery badge](https://smithery.ai/badge/@SDGLBL/claude-code)](https://smithery.ai/server/@SDGLBL/claude-code)
[![Smithery deployment status badge](https://smithery.ai/badge/@SDGLBL/claude-code)](https://smithery.ai/server/@SDGLBL/claude-code)

Copilot uses AI. Check for mistakes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants