Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .changeset/thin-showers-write.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'taskflow-mcp': minor
---

Initial package release
8 changes: 0 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
# Changelog

## 0.1.0

### Minor Changes

### [0.1.0](https://www.npmjs.com/package/taskflow-mcp/v/0.1.0) - 2026-02-04

Initial package release

This project uses Changesets to generate release notes.

For a new release, run the Changesets workflow to create a release PR with version bumps and changelog updates.
34 changes: 11 additions & 23 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# TaskFlow MCP

[![npm version](https://badge.fury.io/js/taskflow-mcp.svg)](https://badge.fury.io/js/taskflow-mcp)



## Table of Contents 📌
Expand Down Expand Up @@ -72,11 +74,11 @@ $env:DATA_DIR="${PWD}\.mcp-tasks"

## Client Setup 📎

Copy‑paste examples for popular MCP clients. Replace `<PATH_TO_REPO>` and `<DATA_DIR>` with your own paths.
Use `npx` to run the MCP server directly from GitHub. Replace `<DATA_DIR>` with your preferred data path.

Path examples:
- Windows: `<PATH_TO_REPO>` = `C:\repos\taskflow-mcp`, `<DATA_DIR>` = `C:\repos\taskflow-mcp\.mcp-tasks`
- macOS/Linux: `<PATH_TO_REPO>` = `/Users/you/repos/taskflow-mcp`, `<DATA_DIR>` = `/Users/you/repos/taskflow-mcp/.mcp-tasks`
- Windows: `<DATA_DIR>` = `C:\repos\taskflow-mcp\.mcp-tasks`
- macOS/Linux: `<DATA_DIR>` = `/Users/you/repos/taskflow-mcp/.mcp-tasks`

### VS Code (`.vscode/mcp.json`)

Expand All @@ -85,22 +87,8 @@ Path examples:
"servers": {
"taskflow-mcp": {
"type": "stdio",
"command": "node",
"args": ["<PATH_TO_REPO>\\dist\\index.js"],
"env": {
"DATA_DIR": "<DATA_DIR>"
}
},
"taskflow-mcp-git": {
"type": "stdio",
"command": "cmd",
"args": [
"/c",
"pnpm",
"dlx",
"git+https://github.com/<org>/<repo>.git",
"taskflow-mcp"
],
"command": "npx",
"args": ["taskflow-mcp"],
"env": {
"DATA_DIR": "<DATA_DIR>"
}
Expand All @@ -115,8 +103,8 @@ Path examples:
{
"mcpServers": {
"taskflow-mcp": {
"command": "node",
"args": ["<PATH_TO_REPO>\\dist\\index.js"],
"command": "npx",
"args": ["taskflow-mcp"],
"env": { "DATA_DIR": "<DATA_DIR>" }
}
}
Expand All @@ -128,8 +116,8 @@ Path examples:
```toml
[mcp_servers.taskflow-mcp]
type = "stdio"
command = "node"
args = ["<PATH_TO_REPO>\\dist\\index.js"]
command = "npx"
args = ["taskflow-mcp"]
env = { DATA_DIR="<DATA_DIR>" }
startup_timeout_sec = 120
```
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "taskflow-mcp",
"version": "0.1.0",
"version": "0.0.0",
"description": "MCP server for workflow orchestration, planning, and structured development",
"type": "module",
"engines": {
Expand Down Expand Up @@ -42,7 +42,7 @@
"license": "MIT",
"packageManager": "pnpm@9.0.0",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.2",
"@modelcontextprotocol/sdk": "^1.26.0",
"dotenv": "^16.3.1",
"pino": "^8.21.0",
"pino-pretty": "^13.1.3",
Expand Down
27 changes: 17 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading