Norman Finance MCP Server

Official
MIT License
4
  • Linux
  • Apple
Integrations
  • Supports configuration through .env files to store and manage Norman Finance credentials and environment settings.

  • Allows importing receipts from Cloudflare into the Norman Finance system, demonstrated in the Gmail receipts example.

  • Provides access to installation from source via GitHub repository, with examples linking to attachments hosted on GitHub.

ノーマンファイナンスMCPサーバー

このモデル コンテキスト プロトコル (MCP)サーバーにより、AI は Norman Finance API と対話できるようになり、標準化されたプロトコルを通じて会計、請求書、企業、顧客、税金などにアクセスできるようになります。

[!注記]

Norman Finance MCPサーバーは現在ベータ版です。皆様からのフィードバックをお待ちしております。また、バグを発見された場合は、こちらで問題を報告してください。

特徴

  • 🔐認証:Norman Financeアカウントで安全に認証する
  • 💼会社管理:会社の詳細を管理し、会社の残高、VATの収入などを取得します
  • 📊会計:取引や分類に注意する
  • 📝 (電子)請求書発行:請求書の作成、閲覧、送信、処理。契約内容に基づいて定期的な請求書発行を設定することもできます。
  • 👥クライアント管理:クライアントの作成と管理(CRM)
  • 💰税金:税金情報とレポートを表示し、Finanzamtの公式PDFプレビューを生成して税金を申告します
  • 📄ドキュメント:添付ファイル(領収書、請求書、ドキュメントなど)をアップロードして管理します

👇 Claude Desktop のユースケース例 — 切り替え

前提条件

この MCP サーバーを使用する前に、次のことを行う必要があります。

  1. Norman Financeでアカウントを作成する
  2. 認証のためにメールアドレスとパスワードを用意してください

リモートMCPサーバー

Norman は現在、次の場所でホスト型リモート MCP サーバーを提供しています。

https://mcp.norman.finance/sse

リモート MCP は OAuth 認証を利用し、アクセス トークンを手動で作成または管理する必要がなく、Norman アカウントで直接ログインできるため、推奨されます。

インストール

Claude.ai 統合

Claude.ai に Norman MCP サーバーを追加する:

クロード・マックスの場合:

  1. 設定 > プロフィール
  2. 「統合」セクションを見つけます
  3. 「さらに追加」をタップします
  4. Norman MCP サーバーの URL を入力します: https://mcp.norman.finance/sse
  5. 「追加」をクリックして完了します

Claude Enterprise & Teamsの場合:

  1. [設定] > [統合] (Teams の場合) または*[設定] > [データ管理]* (Enterprise の場合) に移動します。
  2. 「統合」セクションを見つけます
  3. 「さらに追加」をクリック
  4. Norman MCP サーバーの URL を入力します: https://mcp.norman.finance/sse
  5. 「追加」をクリックして完了します

Norman 統合を有効にする:

  1. クロードとチャットを始めましょう。
  2. 検索とツールメニューを開きます。
  3. 「接続」をクリックして、Norman アカウントをリンクします。
  4. 接続後、同じメニューを使用して特定の Norman ツールをオンにします。

Claudeデスクトップに追加

Claude Desktop で Norman Finance MCP サーバーを実行するには、上記の手順を使用するか、次の手順で手動で追加します。

1. Claude Desktopをダウンロードして設定する
  1. Claude Desktopをダウンロードしてください。
  2. Claude を起動し、「設定」>「開発者」>「構成の編集」に移動します。
  3. 次の構成でclaude_desktop_config.jsonファイルを更新します。
リモートMCP
{ "mcpServers": { "norman-mcp-server": { "command": "npx", "args": ["mcp-remote", "https://mcp.norman.finance/sse"] } } }
ローカルMCP
uvをインストールする

こちらの手順に従ってください: uvのインストール

{ "mcpServers": { "norman-mcp-server": { "command": "<home_path>/.local/bin/uvx", "args": [ "--from", "norman-mcp-server@latest", "norman-mcp" ], "env": { "NORMAN_EMAIL": "your-email@example.com", "NORMAN_PASSWORD": "your-password", "NORMAN_ENVIRONMENT": "production" } } } }

構成

認証方法

Norman MCP サーバーは、次の 2 つの認証方法をサポートしています。

1. OAuth認証(SSEトランスポート用)

MCP Inspector、Claude、またはその他の SSE クライアントでサーバーを使用する場合、サーバーは OAuth 2.0 認証を使用します。

  1. SSE トランスポートを使用してサーバーを起動します。
    python -m norman_mcp --transport sse
  2. サーバーに接続すると、ログインページが表示されます。
  3. Norman Financeの資格情報を入力してください
  4. 認証トークンを使用してアプリケーションにリダイレクトされます
2. 環境変数(stdioトランスポート用)

Claude Desktop または stdin/stdout 通信でサーバーを使用する場合は、環境変数を通じて資格情報を提供します。

# .env NORMAN_EMAIL=your-email@example.com NORMAN_PASSWORD=your-password NORMAN_ENVIRONMENT=production # or "sandbox" for the development environment NORMAN_API_TIMEOUT=200 # Request timeout in seconds

環境変数

サーバーは、次の環境変数を使用して構成できます。

# Authentication (for stdio transport) NORMAN_EMAIL=your-email@example.com NORMAN_PASSWORD=your-password NORMAN_ENVIRONMENT=production # or "sandbox" for the development environment # Server configuration NORMAN_MCP_HOST=0.0.0.0 # Host to bind to NORMAN_MCP_PORT=3001 # Port to bind to NORMAN_MCP_PUBLIC_URL=http://example.com # Public URL for OAuth callbacks (important for remote access) NORMAN_API_TIMEOUT=200 # Request timeout in seconds

発達

このセクションは、Norman Finance MCP サーバーを開発または拡張したい貢献者向けです。

ローカルセットアップ

git clone https://github.com/norman-finance/norman-mcp-server.git cd norman-mcp-server pip install -e .

次に、claude_desktop_config.json ファイルを更新して、Python モジュールを直接ポイントするようにします。

{ "mcpServers": { "norman-mcp-server": { "command": "<path_to_your_python>/python", "args": ["-m", "norman_mcp"], "env": { "NORMAN_EMAIL": "your-email@example.com", "NORMAN_PASSWORD": "your-password", "NORMAN_ENVIRONMENT": "production" } } } }

機能に関するアイデアや、実現してほしい機能などがあれば、ぜひご提案ください


You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

hybrid server

The server is able to function both locally and remotely, depending on the configuration or use case.

Norman Financeは、ドイツの起業家向けに設計された会計・税務申告の自動化システムです。Norman Finance MCPサーバーは、Norman Financeの会計、税務、請求書発行サービスとの連携を新たな方法で実現します。Norman Finance API機能を統合することで、財務ワークフローを簡素化します。

  1. 特徴
    1. 👇 Claude Desktop のユースケース例 — 切り替え
  2. 前提条件
    1. リモートMCPサーバー
      1. インストール
        1. Claude.ai 統合
        2. Claudeデスクトップに追加
      2. 構成
        1. 認証方法
        2. 環境変数
      3. 発達
        1. ローカルセットアップ

      Related MCP Servers

      • A
        security
        A
        license
        A
        quality
        A Model Context Protocol (MCP) server that provides real-time access to financial market data through the free Alpha Vantage API. This server implements a standardized interface for retrieving stock quotes and company information.
        Last updated -
        5
        30
        Python
        MIT License
        • Apple
      • -
        security
        A
        license
        -
        quality
        An MCP server that allows accessing and managing ledger files through Claude by providing account listing, balance checking, and transaction register viewing capabilities.
        Last updated -
        1
        Python
        GPL 3.0
        • Apple
      • A
        security
        A
        license
        A
        quality
        A simple MCP server for Yahoo Finance using yfinance. This server provides a set of tools to fetch stock data, news, and other financial information.
        Last updated -
        10
        9
        Python
        MIT License
      • -
        security
        F
        license
        -
        quality
        Integrate the MCP Server for Mifos X an Open Source Core Banking Solution for Financial Institutions. Useful for managing clients, loans, savings, shares, financial transactions and generating financial reports.
        Last updated -
        7

      View all related MCP servers

      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/norman-finance/norman-mcp-server'

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