Skip to main content
Glama

mcp-malt

Malt API 用の MCP サーバーです。Malt が公開している全 13 のオペレーションをカバーします。あなたが発行する請求書、Malt が請求する手数料、受け取る支払い、そして組織アカウントの SCIM ユーザープロビジョニングです。

できることとできないこと

Malt の API は、多くの人が想像するよりも小さいです。扱っているのはバックオフィスの請求処理とエンタープライズ向けユーザープロビジョニングだけで、それ以外はありません。

ツールセット

ツール数

説明

invoices

3

クライアントに発行した請求書(PDF 込み)

payments

1

受け取った支払いと、その支払いが充当される請求書

fee-invoices

3

Malt からあなたへの手数料請求書(PDF 込み)

scim

読み取り 2、書き込み 4

組織アカウント向け SCIM 2.0 ユーザープロビジョニング

人材検索、プロフィール、ミッション、オファー、メッセージングはありません。それらは Malt が有名な機能ですが、公開 API には含まれていません。もしこれらを求めてきたのなら、このサーバーは提供できません。ドキュメント化された API を使う他の手段でも同じです。

Malt 向けのコミュニティ製 MCP サーバーは 2 つ、ブラウザ自動化で Web アプリを操作して DOM をスクレイピングすることで、そのデータに到達できます。それらのドキュメントには、プロフィール編集の自動化が Malt の利用規約違反になる可能性があると警告されています。このサーバーはドキュメント化された API のみを呼び出します。

Related MCP server: fintaro-mcp

トークンの取得

  1. アカウントを持っていない場合は、サインアップページ でアカウントを作成します。

  2. My Account、次に API Keys を開きます。

  3. 必要な権限スコープを持つアクセストークンを作成します。有効化するツールセットに合わせてください。

  4. トークンをすぐにコピーします。作成時に一度だけ表示され、再び表示されることはありません。

フリーランサーアカウントのトークンはセルフサービスで取得できます。クライアントチームと組織のトークンは scim ツールセットで必要で、Malt の担当者から提供されます。

ここに OAuth 2.0 はありません。Malt は認可サーバーもトークンエンドポイントも公開していないため、上記の API トークンが唯一の入り口です。docs/authentication.md で詳しく説明しています。多くの人がはまるヘッダーの詳細も含まれます。

インストール

1 つのリリースから 3 つの方法で公開しています。npmjs と GitHub Packages 上の npm パッケージ、GHCR 上のコンテナイメージです。npx が通常の MCP クライアントでの選択肢で、Docker はロックダウンや共有の環境に適しています。

npm ではなく GitHub Packages からインストールするには、スコープを指定します。@ialejandro:registry=https://npm.pkg.github.com~/.npmrc に追加してください。

npx

// Claude Desktop: claude_desktop_config.json
// Cursor: .cursor/mcp.json
{
  "mcpServers": {
    "malt": {
      "command": "npx",
      "args": ["-y", "@ialejandro/mcp-malt"],
      "env": {
        "MALT_API_TOKEN": "your-token-here",
        "MALT_TOOLSETS": "invoices,payments,fee-invoices"
      }
    }
  }
}

Claude Code

claude mcp add malt \
  --env MALT_API_TOKEN=your-token-here \
  --env MALT_TOOLSETS=invoices,payments,fee-invoices \
  -- npx -y @ialejandro/mcp-malt

Docker

サーバーは stdin/stdout 経由で JSON-RPC を話すため、-i が必要で、-t は付けないでください。

docker run -i --rm \
  -e MALT_API_TOKEN=your-token-here \
  -e MALT_TOOLSETS=invoices \
  ghcr.io/ialejandro/mcp-malt
// Claude Desktop: claude_desktop_config.json
// Cursor: .cursor/mcp.json
{
  "mcpServers": {
    "malt": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "MALT_API_TOKEN",
        "-e", "MALT_TOOLSETS",
        "ghcr.io/ialejandro/mcp-malt"
      ],
      "env": {
        "MALT_API_TOKEN": "your-token-here",
        "MALT_TOOLSETS": "invoices,payments,fee-invoices"
      }
    }
  }
}

ソースからビルド

git clone https://github.com/ialejandro/mcp-malt
cd mcp-malt
npm ci && npm run build
{
  "mcpServers": {
    "malt": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-malt/dist/index.js"],
      "env": {
        "MALT_API_TOKEN": "your-token-here",
        "MALT_TOOLSETS": "invoices,payments,fee-invoices"
      }
    }
  }
}
{
  "mcpServers": {
    "malt": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "MALT_API_TOKEN",
        "-e", "MALT_TOOLSETS",
        "ghcr.io/ialejandro/mcp-malt"
      ],
      "env": {
        "MALT_API_TOKEN": "your-token-here",
        "MALT_TOOLSETS": "invoices,payments,fee-invoices"
      }
    }
  }
}

設定

変数

デフォルト

説明

MALT_API_TOKEN

必須

My Account、API Keys で取得したトークン

MALT_TOOLSETS

invoices, payments, fee-invoices, scim, または all のカンマ区切りのリスト

MALT_ALLOW_WRITES

false

SCIM の書き込み系 4 ツールを公開します。scim のみだと読み取り専用です

MALT_MAX_LIST_ITEMS

200

リスト結果の上限。Malt は請求エンドポイントをページングしないため

MALT_RATE_LIMIT_RPS

5

送信リクエストのレート制御。Malt は公開していないため、こちら側の値です

MALT_TIMEOUT_MS

30000

リクエストごとのタイムアウト

MALT_API_BASE_URL

https://api.malt.com

API ベース URL のオーバーライド。主にテスト用

MALT_AUTH_SCHEME

raw

raw または bearer。Malt が変更しない限り変更不要です

MALT_LOG_LEVEL

info

debug, info, warn, error。ログはすべて stderr に出力されます

MALT_TOOLSETS を設定しない場合、サーバーは起動するものの何も提供しません。これは意図的なもので、失敗ではありません。モデルに見せるものをあなたが決めるのです。ツールセットは 1 つずつ追加してください。

不明なツールセット名は無視されるのではなく、サーバーがエラーで停止します。タイプミスでツールが静かに使えなってしまうのは、デバッグが困難だからです。

よくある操作

四半期を照合する。 invoices,payments,fee-invoices を有効にし、malt_reconcile_revenue プロンプトを実行します。3 つのリストをすべて取得し、支払いを対応する請求書に突き合わせ、売上、税、Malt の手数料、受け取った現金を報告します。

Reconcile my Malt revenue for Q1 2026.

請求書 PDF を取得する。 Malt は PDF を base64 エンコードし JSON に織り込み返します。ツールはそれをデコードし、実際の PDF 添付として返します。

Download the PDF for invoice INV-123456.

社員をオフボードする。 MALT_ALLOW_WRITES=truescim を有効にし、malt_user_lifecycle を使います。削除ではなく無効化する方式で、Malt は実際にそれをサポートしています。

Offboard jane.doe@acme.com from our Malt organization.

ドキュメント

開発

テストは fetch をモックしていて、実際の API を呼びません。

spec/malt-openapi.json は、Malt が公開しているドキュメントのコミット済みスナップショットです。毎日の日次ジョブが実際の仕様と差分を取って、変更があれば PR を作ります。Malt は info.version0.0.1 のままにして、いるので、バージョン番号ではなくオペレーション比較します。

npm ci
npm run typecheck
npm test
npm run build
npm run check-spec   # diff the live Malt spec against spec/malt-openapi.json

コントリビューション

CONTRIBUTING.md を参照してください。エンドポイントやツールセットを追加する方法は docs/extending.md にあります。

ライセンス

MIT

Install Server
A
license - permissive license
Not graded
quality - not tested
A
maintenance

Maintenance

Maintainers
Response time
Release cycle
1Releases (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
    A
    quality
    C
    maintenance
    Enables MCP-capable agents to read Fintaro invoices and transactions, and upload receipts, via a scoped API key with PII-safe projections.
    6
    Apache 2.0
  • F
    license
    Not graded
    quality
    C
    maintenance
    Provides full access to the Make.com API, enabling creation, modification, deletion, and execution of scenarios, as well as management of connections, webhooks, data stores, and organizations.
  • A
    license
    A
    quality
    C
    maintenance
    Enables management of endpoint inventory, patching, and vulnerabilities through the Action1 REST API, with read-only access by default and optional write support for update approvals.
    15
    Apache 2.0

View all related MCP servers

Related MCP Connectors

  • Issue, rotate and revoke scoped API-key passes for 25+ providers — the agent never sees a real key

  • Agent payments, API key vaulting, and governed mandates. Agents spend within user-defined limits.

  • Apideck Unified API MCP — 330 tools across 200+ SaaS connectors (accounting, CRM, HRIS, ATS).

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/ialejandro/mcp-malt'

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