sendbill-mcp/package.json
thug0bin 65c69f5666 🤖 센드빌(Sendbill) MCP 서버 초기 구현
- 전자세금계산서 API 전체 커버 (29개 툴)
- 인증서 관리, 계산서 발행(단건/묶음/대량), 상태조회, 회원관리
- 홈택스 연동 (세금계산서/현금영수증 일별/월별 매출/매입)
- 휴폐업 조회, 추가메일 전송
- 에러코드표 내장 (Excel 기반)
- 코드표 참조 툴 (billtype, taxrate, billstat 등)
- 인증: SENDBILL_SBKEY 환경변수

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-02 01:51:24 +09:00

22 lines
444 B
JSON

{
"name": "sendbill-mcp",
"version": "1.0.0",
"description": "센드빌 전자세금계산서 API MCP 서버",
"type": "module",
"bin": {
"sendbill-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"@types/node": "^20.0.0"
}
}