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
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile
FROM python:3.13-slim

WORKDIR /app

# Copy all files into the container
COPY . .

# Upgrade pip and install dependencies
RUN pip install --no-cache-dir --upgrade pip \
&& pip install --no-cache-dir -r requirements.txt

# Expose port if necessary, though MCP uses stdio by default
# EXPOSE 8765

# Command to run the MCP server
CMD ["python", "server.py"]
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# DeltaTask - Advanced Task Management System
[![smithery badge](https://smithery.ai/badge/@brysontang/DeltaTask)](https://smithery.ai/server/@brysontang/DeltaTask)

A powerful, locally-hosted task management application with Obsidian integration and a Model Context Protocol (MCP) server.

Expand Down Expand Up @@ -68,6 +69,14 @@ The MCP server exposes the following operations:

### Installation

#### Installing via Smithery

To install DeltaTask for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@brysontang/DeltaTask):

```bash
npx -y @smithery/cli install @brysontang/DeltaTask --client claude
```

1. Clone this repository
2. Set up the Python environment using `uv`:

Expand Down
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/config#smitheryyaml

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