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
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM denoland/deno:alpine-2.3.1

WORKDIR /app

# Copy dependency files
COPY deno.json deno.lock ./

# Copy source code
COPY . .

# Compile the application to a binary
RUN deno compile --allow-all --output think-tool-bin server.ts

# Set the binary as the entrypoint
# CMD will be provided by smithery.yaml
CMD ["./think-tool-bin"]
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Think Tool (v0.0.2)
[![smithery badge](https://smithery.ai/badge/@sterling/think-tool)](https://smithery.ai/server/@sterling/think-tool)

A powerful Model Context Protocol (MCP) server that enhances AI reasoning capabilities by providing a structured thinking environment.

Expand All @@ -20,6 +21,14 @@ Think Tool is a lightweight MCP server built with Deno and FastMCP that provides

## Installation

### Installing via Smithery

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

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

### One-Click Installation with Smithery

The easiest way to install Think Tool is with the Smithery CLI:
Expand Down
27 changes: 27 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Smithery configuration file: https://smithery.ai/docs/build/project-config

build:
dockerfile: Dockerfile
dockerBuildPath: .
startCommand:
type: stdio
configSchema:
# JSON Schema defining the configuration options for the MCP.
type: object
required: []
properties:
logLevel:
type: string
default: info
description: Logging level for the Think Tool MCP
commandFunction:
# A JS function that produces the CLI command based on the given config to start the MCP on stdio.
|-
(config) => ({
"command": "./think-tool-bin",
"args": [],
"env": {
"DENO_LOG_LEVEL": config.logLevel || "info",
"DENO_NO_UPDATE_CHECK": "1"
}
})