8000 Deployment: Dockerfile and Smithery config by smithery-ai[bot] · Pull Request #1 · ddkang1/mcp-think-tool · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Deployment: Dockerfile and Smithery config #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
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
19 changes: 19 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM python:3.10-alpine

# Install build dependencies
RUN apk add --no-cache gcc musl-dev openssl-dev libffi-dev

WORKDIR /app

# Copy project files
COPY . /app

# Upgrade pip and install the package
RUN pip install --upgrade pip \
&& pip install .

# Expose port if necessary (not required for stdio)

# Default command starts the MCP server
CMD ["mcp-think-tool"]
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# MCP Think Tool Server

[![smithery badge](https://smithery.ai/badge/@ddkang1/mcp-think-tool)](https://smithery.ai/server/@ddkang1/mcp-think-tool)

A Model Context Protocol (MCP) server implementing the "think" tool for improving Claude's complex reasoning capabilities.

## Overview
Expand All @@ -15,6 +17,15 @@ This MCP server implements the "think" tool as described in Anthropic's [blog po

## Installation

### Installing via Smithery

To install mcp-think-tool for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@ddkang1/mcp-think-tool):

```bash
npx -y @smithery/cli install @ddkang1/mcp-think-tool --client claude
```

### Manual Installation
Install from PyPI:

```bash
Expand Down
18 changes: 18 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Smithery configuration file: https://smithery.ai/docs/config#smitheryyaml

startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
properties:
transport:
type: string
default: stdio
description: Transport type for MCP server. Typically 'stdio' or 'sse'.
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({ command: 'mcp-think-tool', args: [] })
exampleConfig:
transport: stdio
0