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.

Norman Finance MCP 서버

모델 컨텍스트 프로토콜(MCP) 서버를 통해 AI는 Norman Finance API와 상호 작용하여 표준화된 프로토콜을 통해 회계, 송장, 회사, 클라이언트, 세금 등에 액세스할 수 있습니다.

[!메모]

Norman Finance MCP 서버는 현재 베타 버전입니다. 여러분의 의견을 환영하며, 버그가 있으시면 여기에서 문제를 제기하여 보고해 주시기 바랍니다.

특징

  • 🔐 인증 : Norman Finance 계정으로 안전하게 인증하세요
  • 💼 회사 관리 : 회사 세부 정보 관리, 회사 잔액, VAT 정보 등을 확인하세요.
  • 📊 회계 : 거래 내역, 분류를 확인하세요
  • 📝 (e-)송장 발행 : 송장을 작성, 확인, 발송 및 관리할 수 있습니다. 계약에 따라 정기 송장을 설정할 수도 있습니다.
  • 👥 고객 관리 : 고객 생성 및 관리(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. "추가"를 클릭하여 완료하세요.

노르만 통합을 가능하게 하다:

  1. 클로드와 채팅을 시작하세요.
  2. 검색 및 도구 메뉴를 엽니다.
  3. "연결"을 클릭하여 Norman 계정을 연결하세요.
  4. 연결 후 동일한 메뉴를 사용하여 특정 Norman 도구를 켭니다.

Claude Desktop에 추가

Claude Desktop으로 Norman Finance MCP 서버를 실행하려면 위의 지침을 사용하거나 다음 단계에 따라 수동으로 추가할 수 있습니다.

1. Claude Desktop 다운로드 및 구성
  1. Claude Desktop을 다운로드하세요.
  2. Claude를 실행하고 설정 > 개발자 > 구성 편집으로 이동합니다.
  3. 다음 구성으로 claude_desktop_config.json 파일을 업데이트하세요.
원격 MCP

지엑스피1

지역 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 서버는 두 가지 인증 방법을 지원합니다.

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 Desktop에 추가
      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