Skip to main content
Glama
abutbul

Gatherings MCP Server

by abutbul

集まりMCPサーバー

集まりや経費の共有を管理するためのモデル コンテキスト プロトコル サーバー。

これは TypeScript ベースの MCP サーバーであり、社交イベントの経費と支払いを追跡して、払い戻し額の計算や友人間の残高の決済を簡単に行うことができます。

アーキテクチャノート

重要:このプロジェクトは、Node.jsアプリケーションとしては非標準的なアーキテクチャを使用しています。TypeScript MCPサーバーは、Pythonバックエンド実装のラッパーとして機能します。Node.jsサーバーはMCPリクエストを受け取り、それをPythonスクリプトへのコマンドライン呼び出しに変換し、結果を返します。

このアーキテクチャは現在のニーズには適していますが、本番環境のアプリケーションにとっては最も効率的で保守しやすいアプローチではありません。

やるべきこと

  • より標準的なアーキテクチャを使用するように実装をリファクタリングします。

    • バックエンドをTypeScript/JavaScriptに完全に移行するか

    • または、Node.jsとPythonコンポーネント間の適切なプロセス間通信を実装する

    • または、PythonバックエンドがMCPサーバーが使用するAPIを提供するREST APIアプローチに置き換えます。

  • Node.js と Python コンポーネント間のエラー処理を改善

  • コンポーネント間の統合のための自動テストを追加する

  • Dockerfileを最適化する

Related MCP server: Expense Tracker MCP

特徴

ツール

  • create_gathering - 新しい集まりを作成する

    • 必須パラメータとして、 gathering_idmembersを取ります。

  • add_expense - メンバーの経費を追加する

    • 必須パラメータとして、 gathering_idmember_nameamountを取ります。

  • calculate_reimbursements - 集まりの払い戻しを計算する

    • 必須パラメータとしてgathering_id指定します

  • record_payment - メンバーによる支払いを記録する

    • 必須パラメータとして、 gathering_idmember_nameamountを取ります。

  • rename_member - 名前のないメンバーの名前を変更する

    • 必須パラメータとして、 gathering_idold_namenew_nameを取ります。

  • show_gathering - 集まりの詳細を表示する

    • 必須パラメータとしてgathering_id指定します

  • list_gatherings - すべての集まりを一覧表示する

  • close_gathering - 集まりを閉じる

    • 必須パラメータとしてgathering_id指定します

  • delete_gathering - 集まりを削除する

    • 必須パラメータとしてgathering_idを取り、オプションのforceパラメータを取ります

  • add_member - 集まりに新しいメンバーを追加する

    • 必須パラメータとして、 gathering_idmember_nameを使用します。

  • remove_member - 集まりからメンバーを削除する

    • 必須パラメータとして、 gathering_idmember_nameを使用します。

発達

依存関係をインストールします:

npm install

サーバーを構築します。

npm run build

自動リビルドを使用した開発の場合:

npm run watch

インストール

構成

Claude Desktop で使用するには、サーバー設定を追加します。

{
  "mcpServers": {
    "gatherings": {
      "command": "node",
      "args": ["/path/to/gatherings-server/build/index.js"],
      "env": {
        "GATHERINGS_DB_PATH": "gatherings.db",
        "GATHERINGS_SCRIPT": "/path/to/gatherings-server/gatherings.py"
      },
      "disabled": false,
      "autoApprove": [],
      "alwaysAllow": [
        "create_gathering",
        "add_expense",
        "calculate_reimbursements",
        "record_payment",
        "rename_member", 
        "show_gathering",
        "list_gatherings",
        "close_gathering",
        "delete_gathering",
        "add_member",
        "remove_member"
      ],
      "timeout": 300
    }
  }
}

設定オプション

  • commandargs : サーバーの実行方法を指定します

  • env : 環境変数

    • GATHERINGS_DB_PATH : データベースファイルへのパス

    • GATHERINGS_SCRIPT : 収集操作を処理するための Python スクリプトへのパス

  • alwaysAllow : プロンプトなしで自動的に許可されるツールのリスト

  • timeout : 最大実行時間(秒)

デバッグ

MCPサーバーはstdio経由で通信するため、デバッグが困難になる場合があります。パッケージスクリプトとして提供されているMCP Inspectorの使用をお勧めします。

npm run inspector

インスペクターは、ブラウザでデバッグ ツールにアクセスするための URL を提供します。

Install Server
A
license - permissive license
B
quality
D
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
    D
    maintenance
    An MCP server that helps AI assistants manage expense-sharing for social events, enabling the creation of gatherings, tracking of expenses, and calculation of fair reimbursements among participants.
    Apache 2.0
  • F
    license
    B
    quality
    D
    maintenance
    A Model Context Protocol server designed for tracking and managing personal or business expenses. It enables users to log financial transactions and organize expenditure data through integrated tools.
    4
  • A
    license
    A
    quality
    D
    maintenance
    A Model Context Protocol server that enables AI assistants to manage Splitwise expenses using natural language, with support for voice commands, smart name matching, and advanced split configurations.
    7
    4
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    A Model Context Protocol (MCP) server for managing shared expenses between groups, with tools for group management, expense tracking, and debt simplification.
    7
    MIT

View all related MCP servers

Related MCP Connectors

  • Split shared expenses in a group — no account needed. See who owes whom and settle up.

  • A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…

  • Hosted MCP server for Mini Accountant: invoices, expenses, customers, analytics, tax estimates.

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/abutbul/gatherings-mcp'

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