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
22 changes: 22 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/build/project-config
# Use official Python runtime
FROM python:3.12-slim

# Set working directory
WORKDIR /app

# Copy project files
COPY . /app

# Install build dependencies and runtime dependencies
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
build-essential \
gfortran \
&& pip install --no-cache-dir . \
&& apt-get remove -y build-essential gfortran \
&& apt-get autoremove -y \
&& rm -rf /var/lib/apt/lists/*

# Default command: run MCP over stdio
CMD ["python", "main.py"]
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
[![License](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)
[![Code Style](https://img.shields.io/badge/Code%20Style-Black-black.svg)](https://github.com/psf/black)
[![Type Checked](https://img.shields.io/badge/Type%20Checked-mypy-blue.svg)](https://mypy.readthedocs.io/)
[![smithery badge](https://smithery.ai/badge/@taylorwilsdon/quantconnect-mcp)](https://smithery.ai/server/@taylorwilsdon/quantconnect-mcp)

**Professional-grade Model Context Protocol server for QuantConnect's algorithmic trading platform**

Expand Down Expand Up @@ -96,6 +97,14 @@ await perform_pca_analysis(

## 🛠️ Installation

### Installing via Smithery

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

```bash
npx -y @smithery/cli install @taylorwilsdon/quantconnect-mcp --client claude
```

### Prerequisites

- **Python 3.12+** (Type-annotated for maximum reliability)
Expand Down
13 changes: 13 additions & 0 deletions smithery.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Smithery configuration file: https://smithery.ai/docs/build/project-config

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