KfW Förderungsmittel MCP Server
KfW 지원금 MCP 서버
독일 내 주거용 건물 에너지 효율 개선을 위한 KfW 지원 프로그램을 조회하기 위한 MCP(Model Context Protocol) 서버입니다.
"Sanierungskompass(개보수 나침반)" 플랫폼의 일부 - 주택 소유자와 에너지 컨설턴트 및 최신 KfW 금융 옵션을 연결합니다.
KfW 지원이란 무엇인가요?
독일 재건은행(KfW)은 다음을 위해 저금리 대출 및 보조금을 제공합니다:
에너지 효율 건물 개보수 (BEG - 효율적 건물을 위한 연방 지원)
난방 교체 및 재생 에너지 열원
창문, 단열 및 환기 작업과 같은 개별 조치
KfW 효율 주택 표준에 따른 전체 개보수
Related MCP server: FluentLab Funding Assistant
기능
KfW 데이터 조회를 위한 4개의 MCP 도구
최신 KfW 프로그램 데이터 (2025/2026)
일반적인 프로그램이 포함된 정적 폴백 데이터베이스
계산 기능이 포함된 이자율 및 대출 조건
상환 보조금 산정 (보조금 지원 대출 부분)
TypeScript를 사용한 타입 안전 구현
설치
NPM 패키지
npm install @sanierungskompass/kfw-mcp소스에서 설치
git clone https://github.com/timfellendorf/kfw-mcp.git
cd kfw-mcp
npm install
npm run build사용법
MCP 서버로 시작
npm start
# oder für Entwicklung:
npm run dev서버는 MCP 프로토콜 형식으로 Stdin/Stdout을 수신합니다.
Claude Desktop 설정
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) 또는 Windows/Linux의 해당 파일을 편집하세요:
{
"mcpServers": {
"kfw-foerdermittel": {
"command": "node",
"args": ["/pfad/zu/kfw-mcp/dist/index.js"]
}
}
}그런 다음 Claude에서 서버를 활성화합니다.
Claude Code 사용
# Server im Hintergrund starten
npm run dev &
# In Claude Code verwenden:
# - Claude erkennt verfügbare Tools automatisch
# - Tools können direkt in Prompts genutzt werden사용 가능한 도구
1. kfw_list_programs
주거용 건물 개보수를 위해 사용 가능한 모든 KfW 프로그램을 나열합니다.
입력: 매개변수 필요 없음
출력: 프로그램 배열 (ID, 이름, 유형, 카테고리, 설명)
예시:
Claude: "Zeige mir alle verfügbaren KfW-Programme"
Server antwortet mit:
[
{
"id": "358",
"name": "KfW 358 - Ergänzungskredit für Einzelmaßnahmen",
"type": "Kredit",
"category": "BEG - Einzelmaßnahmen",
"description": "Zinsgünstiger Kredit für einzelne energetische Maßnahmen an Wohngebäuden",
"maxLoanAmount": 120000,
"interestRate": {
"current": 2.75,
"unit": "% p.a. effektiv"
}
},
...
]2. kfw_get_program_details
특정 KfW 프로그램에 대한 자세한 정보를 가져옵니다.
매개변수:
program_number(string, 필수): KfW 프로그램 번호 (예: "358", "261", "458", "459")
출력: 상세 프로그램 정보
예시:
Claude: "Gib mir Details zum KfW 358 Programm"
Server antwortet mit:
{
"id": "358",
"name": "KfW 358 - Ergänzungskredit für Einzelmaßnahmen",
"type": "Kredit",
"description": "Zinsgünstiger Kredit für einzelne energetische Maßnahmen an Wohngebäuden",
"maxLoanAmount": 120000,
"eligibleMeasures": [
"Fenstertausch",
"Türentausch",
"Dachdämmung",
"Wanddämmung",
"Kellerdeckendämmung",
"Heizungsanlage",
"Lüftungsanlage",
"Solarthermieanlage"
],
"interestRate": {
"current": 2.75,
"unit": "% p.a. effektiv"
},
"maxRepaymentPeriod": 20,
"minRepaymentPeriod": 4,
"tilgungszuschuss": 0,
"notes": "Für einzelne energetische Sanierungsmaßnahmen"
}3. kfw_check_eligibility
특정 개보수 조치에 적합한 KfW 프로그램을 확인합니다.
매개변수:
measure(string, 필수): 개보수 조치 (예: "창문 교체", "지붕 단열", "난방 교체", "히트펌프")building_type(string, 선택): 건물 유형 (예: "주거용 건물")is_owner_occupied(boolean, 선택): 자가 거주 여부
출력: 권장 사항이 포함된 적용 가능한 프로그램
예시:
Claude: "Welche KfW-Programme gibt es für Wärmepumpen?"
Server antwortet mit:
{
"measure": "Wärmepumpe",
"applicablePrograms": [
{
"id": "458",
"name": "KfW 458 - Heizungsförderung",
"type": "Zuschuss",
"eligibilityNotes": "30% Basis + bis zu 40% Bonuszuschläge = max 70%"
},
{
"id": "359",
"name": "KfW 359 - Kredit für Sanierungsmaßnahmen",
"type": "Kredit",
"eligibilityNotes": "Umfassende Sanierung mit Effizienzhaus-Standard"
}
],
"matchCount": 2,
"recommendations": [
"Zuschuss- und Kreditprogramme verfügbar - vergleichen Sie die Konditionen.",
"Zuschuss-Programme erfordern keine Rückzahlung.",
"Kredit-Programme bieten zinsgünstige Darlehen."
]
}4. kfw_calculate_funding
KfW 프로그램에 대한 예상 대출 상환액 및 지원 금액을 계산합니다.
매개변수:
program(string, 필수): KfW 프로그램 번호 (예: "358", "458")loan_amount(number, 필수): 대출 금액/보조금 금액 (EUR)term_years(number, 선택): 대출 기간 (년) (기본값: 대출 시 15년)
출력: 월 상환액, 총 부담액, 이자율 및 상환 보조금이 포함된 계산 결과
예시:
Claude: "Berechne die monatliche Rate für einen 50.000€ Kredit im KfW 358 über 15 Jahre"
Server antwortet mit:
{
"program": "358",
"loanAmount": 50000,
"termYears": 15,
"type": "Kredit",
"monthlyPayment": 351.24,
"totalPayment": 63223.0,
"totalInterest": 13223.0,
"effectiveInterestRate": 2.75,
"tilgungszuschuss": 0,
"netLoanAmount": 50000,
"notes": "Zinssatz: 2.75% p.a. effektiv"
}보조금의 경우 (예: KfW 458):
Claude: "Berechne den Zuschuss für eine 15.000€ Wärmepumpen-Anlage im KfW 458"
Server antwortet mit:
{
"program": "458",
"loanAmount": 15000,
"type": "Zuschuss",
"monthlyPayment": 0,
"tilgungszuschuss": 10500,
"netLoanAmount": 4500,
"subsidyPercentage": 70,
"notes": "70% Zuschuss = 10500€ nicht rückzahlbar"
}지원되는 KfW 프로그램
번호 | 이름 | 유형 | 카테고리 |
358 | 개별 조치를 위한 보충 대출 | 대출 | BEG 개별 조치 |
359 | 개보수 조치를 위한 대출 | 대출 | BEG 전체 개보수 |
261 | 주거용 건물 효율 주택 대출 | 대출 | BEG 효율 주택 |
458 | 난방 지원 | 보조금 | BEG 난방 |
459 | 개별 조치 보조금 | 보조금 | BEG 개별 조치 |
(데이터셋 내 종료된 프로그램인 455, 440
This server cannot be installed
Maintenance
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
AlicenseNot gradedqualityNot gradedmaintenanceProvides large language models with access to news and information about renewable energy projects in Germany, allowing filtering by location, topic (solar, wind, hydrogen), and date range.- AlicenseAqualityDmaintenanceProvides access to FluentLab's funding database, enabling users to search for funding opportunities and retrieve document checklists required for specific funding programme applications.113MIT
- AlicenseNot gradedqualityAmaintenance87+ specialized tools for German and European energy data. Direct AI access to Marktstammdatenregister (MaStR), ENTSO-E, Redispatch 2.0, and Grid Operations for utilities and datacenters.2GPL 3.0
- AlicenseNot gradedqualityDmaintenanceProvides programmatic access to official German Bundestag parliamentary data, enabling LLMs to answer questions about legislation, voting records, and members.1MIT
Related MCP Connectors
Live EU funding data in your AI: grant calls, programmes, consortium partners, VCs, incubators.
German Handelsregister + Austrian Firmenbuch for AI agents: master data, financials & ratios.
Broker-only credit/lending discovery shim for AI agents
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/tife89/kfw-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server