Skip to main content
Glama
claus-92

Super Productivity MCP Server

by claus-92

Super Productivity — MCP Server

Model Context Protocolを使用して、ClaudeとSuper Productivityを統合します。 このサーバーは、デスクトップアプリのローカルREST API(http://127.0.0.1:3876)を対象としています。

macOSでのみテスト済みです。貢献やバグ報告を歓迎します!

構造

src/
├── index.ts          ← entry point, starts the MCP server
├── sp-client.ts      ← wrapper for Super Productivity REST API
├── resources.ts      ← resources readable by Claude (tasks, projects, tags)
├── prompts.ts        ← reusable prompt templates
└── tools/
    ├── tasks.ts      ← CRUD tools for tasks
    └── projects.ts   ← tools for projects and tags

Related MCP server: Things MCP Server

セットアップ

1. 依存関係のインストール

npm install

2. ビルド

npm run build
# or use watch mode during development:
npm run dev

3. Super ProductivityでAPIを有効にする

Super Productivity → 設定 → その他 → ローカルREST APIを有効にする。 デスクトップアプリは 127.0.0.1:3876 でリッスンします。

4. Claude Desktopに登録する

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) または %APPDATA%\Claude\claude_desktop_config.json (Windows) を開き、 claude_desktop_config.snippet.json のブロックを追加します。 その際、/ABSOLUTE/PATH/ を実際のプロジェクトパスに置き換えてください:

{
  "mcpServers": {
    "super-productivity": {
      "command": "/usr/local/bin/node",
      "args": ["/absolute/path/super-productivity-mcp/dist/index.js"],
      "env": {
        "SP_API_URL": "http://127.0.0.1:3876"
      }
    }
  }
}

Claude Desktopを再起動します。チャットに 🔧 アイコンが表示されれば、ツールが有効になっています。

4a. 簡単な動作確認

Claudeを開く前に、ローカルAPIを確認します:

curl http://127.0.0.1:3876/health
curl http://127.0.0.1:3876/tasks

5. (オプション) MCP Inspectorでデバッグする

npm run inspect

これにより、各ツールを手動でテストするためのWebインターフェースが開きます。

利用可能なツール

ツール

説明

health_check

ローカルREST APIが起動し、準備ができているか確認します

list_tasks

オプションのフィルター(query, projectId, projectName, tagId, tagName, includeDone, source)を使用してタスクを一覧表示します

search_tasks

同じオプションフィルターを使用して、タイトルテキストでタスクを検索します

get_task

単一のタスクの詳細を取得します

get_status

現在のステータス(アクティブなタスクとタスク数)を返します

get_current_task

現在実行中のタスクを返します

create_task

新しいタスクを作成します。IDに加えて projectNametagNames を受け付けます

update_task

既存のタスクのフィールドを更新します。projectNametagNames もサポートしています

complete_task

タスクを完了としてマークします

start_task

タスクを現在のタスクとして開始します

set_current_task

現在のタスクを設定または解除します

stop_current_task

現在のタスクを停止します

archive_task

タスクをアーカイブします

restore_task

アーカイブされたタスクを復元します

delete_task

タスクを削除します

get_projects

プロジェクトを一覧表示します

get_tags

タグを一覧表示します

利用可能なリソース

URI

説明

sp://status

テキスト形式の現在のステータス

sp://tasks/active

テキスト形式のアクティブなタスク

sp://tasks/archived

テキスト形式のアーカイブ済みタスク

sp://task/current

JSON形式の現在のタスク

sp://projects

JSON形式のすべてのプロジェクト

sp://tags

JSON形式のすべてのタグ

利用可能なプロンプト

名前

説明

daily-planning

日次計画セッション

weekly-review

週次レビュー

break-down-task

複雑なタスクをサブタスクに分解します

環境変数

変数

デフォルト

説明

SP_API_URL

http://127.0.0.1:3876

Super Productivity APIのベースURL

開発

npm test

これにより、TypeScriptのビルドとNodeのテストスイートが実行されます。

Install Server
A
license - permissive license
A
quality
F
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    -
    quality
    F
    maintenance
    Bridge between Super Productivity app and MCP servers, allowing Claude Desktop to directly interact with Super Productivity for task management, project organization, and information retrieval.
    104
    MIT
  • F
    license
    A
    quality
    F
    maintenance
    Enables Claude to interact with LifeUp Cloud API on your local network for task management, achievements, and user information. Supports 20 tools including creating, editing, and querying tasks, achievements, and shop items.
    26
    10

View all related MCP servers

Related MCP Connectors

  • Persistent context for Claude. Your AI always knows your projects and next actions across sessions.

  • WHOOP recovery, strain, sleep and workouts in Claude via official WHOOP OAuth. Free, open source.

  • Read, edit, publish, and preview your pepita websites from Claude.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/claus-92/super-productivity-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server