BorealHost MCP Server
BorealHost MCP 서버
Model Context Protocol용 에이전트 네이티브 웹 호스팅 도구입니다.
MCP 호환 AI 에이전트를 BorealHost.ai에 연결하세요 — 호스팅 구매, 사이트 배포, DNS 관리, 도메인 등록, 인프라 확장까지 전적으로 도구 호출만으로 처리할 수 있습니다.
빠른 시작
원격 서버 (권장)
설치가 필요 없습니다. 호스팅 서버에 직접 연결하세요:
{
"mcpServers": {
"borealhost": {
"type": "streamable-http",
"url": "https://borealhost.ai/mcp/"
}
}
}로컬 설치 (pip)
pip install borealhost-mcp그런 다음 실행:
borealhost-mcp또는 MCP 클라이언트 설정에 추가:
{
"mcpServers": {
"borealhost": {
"command": "borealhost-mcp"
}
}
}환경 변수
변수 | 설명 |
| API 기본 URL (기본값: |
| 사전 구성된 API 키 (선택 사항 — 런타임에 |
Related MCP server: AgentDomain
무엇을 할 수 있나요?
BorealHost MCP는 전체 호스팅 수명 주기에 걸쳐 47개의 도구를 제공합니다:
인증 및 신원
register— 에이전트 계정을 만들고 API 키 받기 (인증 불필요)set_api_key— 세션에 기존 키 활성화whoami— 키 검증 및 계정 정보 확인request_api_key/claim_api_key— 현장 에이전트용 챌린지-응답 인증
플랜 탐색 및 결제
list_plans— 호스팅 플랜 및 가격(CAD) 탐색create_checkout/update_checkout/complete_checkout/get_checkout_status— Stripe 기반 전체 구매流程get_checkout_status— 결제 상태 확인
사이트 관리
get_site_status— 사이트 상태, 리소스, 구성 확인manage_dns— DNS 레코드 생성 및 삭제 (A, AAAA, CNAME, MX, TXT, SRV)deploy— 사이트 배포 트리거scale— 호스팅 플랜 업그레이드 또는 다운그레이드decommission— 사이트 삭제 (7일 유예 기간)
애플리케이션
install_app— 템플릿에서 설치: Django, Laravel, Next.js, Node.js, Nuxt.js, Rails, staticget_app_status/list_apps— 설치 모니터링
파일 관리
list_files/read_file/write_file/upload_file/delete_file— 전체 파일시스템 접근
스냅샷 및 백업
list_snapshots/create_snapshot/delete_snapshot/rollback_snapshot— 로컬 스냅샷create_b2_snapshot— 클라우드 백업 스냅샷 (Backblaze B2)schedule_snapshot/cancel_scheduled_snapshot— 예약 스냅샷get_snapshot_usage— 할당량 확인list_backups/create_backup/restore_backup— 자동 및 수동 백업
도메인
search_domain— 가용성 및 가격 확인register_domain— WHOIS 정보로 등록 (.ca, .com, .net 등 지원)list_domains/domain_detail— 보유 도메인 관리
SSH 및 로그
get_ssh_info/add_ssh_key— VPS 플랜용 SSH 접근get_logs— 오류, 접근, PHP 로그 검색
모듈
list_modules/toggle_module— AI 모듈 활성화/비활성화 (SEO, 번역, 콘텐츠)
계정 및 결제
update_account/delete_account— 프로필 관리list_subscriptions/get_billing_portal— 결제 정보 및 Stripe 포털rotate_key— API 키 교체get_metrics— 트래픽 및 성능 지표
리소스
서버는 구조화된 참조 데이터를 위해 5개의 MCP 리소스를 제공합니다:
URI | 설명 |
| HTTP 상태 및 복구 안내가 포함된 오류 코드 |
| API 키 범위 계층 구조 및 도구 요구 사항 |
| 유효한 열거형 값 (결제 상태, DNS 유형, 로그 유형 등) |
| API 응답 봉투 문서화 |
| 현재 가격이 포함된 실시간 플랜 카탈로그 |
프롬프트
일반적인 작업을 위한 5개의 가이드 워크플로 프롬프트:
purchase_hosting— 단계별 플랜 구매流程setup_site— 구매 후 사이트 구성manage_dns— 일반적인 DNS 작업register_domain— WHOIS 체크리스트가 포함된 도메인 등록claim_site_key— 챌린지-응답 키 클레임
예제 워크플로
Agent: register()
→ {"api_key": "bh_...", "scopes": ["read", "write"]}
Agent: list_plans()
→ [{"slug": "starter", "price_monthly": 9.99, ...}, ...]
Agent: create_checkout("bh_site_starter_monthly")
→ {"checkout_id": "chk_...", "checkout_secret": "..."}
Agent: update_checkout("chk_...", requested_slug="my-new-site")
→ {"status": "ready"}
Agent: complete_checkout("chk_...")
→ {"payment_url": "https://borealhost.ai/pay/chk_.../?s=...",
"confirmation_url": "https://borealhost.ai/pay/chk_.../confirmation/?s=..."}
# show payment_url to the human; paying provisions the site
Agent: get_checkout_status("chk_...") # poll until completed
→ {"status": "completed", "api_key": "bh_...", # shown ONCE
"site": {"slug": "my-new-site", "status": "active"}}
Agent: get_site_status("my-new-site")
→ {"status": "active", "url": "https://my-new-site.borealhost.ai"}인증
API 키 형식:
bh_+ 48자리 16진수범위:
read(보기) →write(수정) →admin(삭제/확장)인증 불필요:
list_plans,create_checkout,update_checkout,complete_checkout,get_checkout_status키는 생성 시 한 번만 표시됩니다 — 즉시 저장하세요
요구 사항
Python 3.10+
종속성:
mcp[cli]>=1.2.0,httpx>=0.27.0
링크
라이선스
독점. Copyright 2025-2026 BorealHost.ai. All rights reserved.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
No tool schema history has been recorded yet.
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 Connectors
Agent-first web hosting: deploy sites, apps, databases and domains over MCP.
Hosting for AI agents: publish a live website in one tool call, ephemeral or forever.
Hosted MCP for creating, checking, deploying, and hosting static sites for AI agents.
The website platform for AI agents. One API to build, host, and operate real websites.
Related MCP Servers
- AlicenseBqualityDmaintenanceEnables management of Coolify instances to control applications, databases, and servers through the Model Context Protocol. It provides a comprehensive set of tools for deploying services and monitoring self-hosted infrastructure using natural language.18213MIT
- AlicenseAqualityFmaintenanceAgentDomain MCP allows AI agents to register, buy, and manage internet domains via the Model Context Protocol. Features include domain search, availability check, purchase, DNS record management, and wallet operations.133MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to edit and serve a static website via natural language, providing file management tools over MCP and HTTP hosting.-
- AlicenseAqualityBmaintenanceEnables AI agents to build, edit, and publish live websites with hosting, database, auth, and domains via the Model Context Protocol.13111MIT
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/alainsvrd/borealhost-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server