ABLESTACK MOLD MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ABLESTACK MOLD MCP Serverlist all virtual machines in my cloud"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
ablestack-mcp-server
ABLESTACK MOLD API를 MCP(Model Context Protocol)로 노출하는 서버입니다.mold_* 네임스페이스의 MCP 툴을 통해 MOLD API를 직접 호출·탐색·디버그할 수 있습니다.
특징
연결정보 툴:
mold_getConfig,mold_setConfig(endpoint/apiKey/secret/algo 저장·조회)범용 호출:
mold_call→ 임의의 API 호출서명 디버그:
mold_signDebug→ 정규화 문자열/서명/최종 URL 확인자동 등록:
mold_autoRegisterApis,mold_listApisMetalistApis메타를 읽어 모든 API를mold_<API명>툴로 동적 등록비동기 폴링: isAsync API에
_wait,_timeoutMs,_intervalMs옵션 지원브래킷 표기 변환: 중첩 params(JSON) →
details[0].cpuNumber=8등으로 자동 전개서명 알고리즘 토글: HMAC-SHA1/SHA256 (서버/클라 동일해야 함)
Related MCP server: Modal MCP Server
요구 사항
Node.js v18+
네트워크에서 MOLD API endpoint에 접근 가능
설치 & 실행
# 의존성 설치
npm i
# 실행 (stdio)
node server.jsClaude Desktop(또는 MCP 클라이언트) 연동 예시
config.json (클라이언트 설정) 예시:
{
"mcpServers": {
"mcp-mold-server": {
"command": "node",
"args": ["server.js"],
"env": {
"MOLD_ENDPOINT": "http://10.10.32.10:8080/client/api",
"MOLD_API_KEY": "<YOUR_API_KEY>",
"MOLD_SECRET_KEY": "<YOUR_SECRET_KEY>",
"MOLD_SIG_ALGO": "sha256", // 또는 "sha1"
"MOLD_AUTOREGISTER": "all" // (선택) 시작 시 전체 API 자동 등록
}
}
}
}실행 후 MCP Inspector/Claude 등에서 툴이 표시됩니다.
툴 목록(핵심)
툴 이름 | 설명 | 입력 예시 |
| 현재 endpoint/apiKey(마스킹)/algo/구성파일 경로 조회 |
|
| 연결정보 설정 및 저장(persist=true면 디스크 저장) |
|
| 서명 디버그(정규화 문자열·서명·최종 URL 생성) |
|
| 임의 API 호출(command + params) |
|
|
|
|
| 모든 API를 MCP 툴로 동적 등록 | `{"include":"^list |
| 자동 등록된 개별 API 툴(예: | API별 파라미터(아래 표 참고) |
자동 등록된 비동기 API(
isasync=true)는_wait,_timeoutMs,_intervalMs옵션을 추가로 받습니다.
사용 예시
1) 연결정보 설정/확인
// 설정
{"endpoint":"http://10.10.32.10:8080/client/api","apiKey":"...","secret":"...","algo":"sha256","persist":true}
// 조회
{}2) 기본 조회
// 존 목록
{"command":"listZones"}
// VM 목록
{"command":"listVirtualMachines","params":{"listall":true}}3) 배포(비동기) — mold_call
입력(JSON):
{
"command": "deployVirtualMachine",
"params": {
"name": "MySQL-Server2",
"zoneid": "dbbaf9e7-865a-4c89-8a26-338c66ec2b81",
"details": { "memory": "16384", "cpuNumber": "8" },
"networkids": "91a24cde-38e4-494a-ae48-778d683ae735",
"templateid": "ca990e93-f2c0-4367-9f88-5bbc571e9fac",
"displayname": "MySQL-Server",
"serviceofferingid": "362c96c7-2b9c-4414-b9ca-9897da845080",
"boottype": "UEFI"
}
}내부 전개(브래킷 표기; 서명 전에 적용):
zoneid=...&serviceofferingid=...&details[0].cpuNumber=8&details[0].memory=16384&
networkids=...&name=MySQL-Server2&templateid=...&displayname=MySQL-Server&boottype=UEFI&
command=deployVirtualMachine4) 자동 등록된 툴로 바로 호출
// 예: mold_deployVirtualMachine
{
"serviceofferingid": "362c96c7-2b9c-4414-b9ca-9897da845080",
"zoneid": "dbbaf9e7-865a-4c89-8a26-338c66ec2b81",
"templateid": "ca990e93-f2c0-4367-9f88-5bbc571e9fac",
"name": "MySQL-Server2",
"details": { "cpuNumber": "8", "memory": "16384" },
"_wait": true // 완료까지 폴링
}파라미터 전개 규칙(브래킷 표기)
입력 타입 | 예시 입력 | 전송 형태 |
원시값 |
|
|
원시 배열 |
|
|
객체(톱레벨) |
|
|
배열-객체 |
|
|
이미 표기된 키 |
| 그대로 사용 |
복잡한 중첩 객체도 자동으로 전개됩니다. 이미
details[0].x와 같이 브래킷/닷 표기로 준 키는 수정하지 않습니다.
환경변수
이름 | 의미 | 기본 |
|
| (없음) |
| API 키 | (없음) |
| 시크릿 키 | (없음) |
|
|
|
|
| (비활성) |
실행 중에는
mold_setConfig로 변경·저장 가능. 저장 파일:~/.config/mcp-mold/config.json(파일 권한0600, 디렉터리0700)
문제 해결(401 서명 오류 체크리스트)
증상 | 점검 |
| 서버/클라 해시 알고리즘 일치(SHA1 vs SHA256), 키·시크릿 공백/개행 제거, 정규화 문자열(소문자·키정렬·값 URL 인코딩·공백 |
401 계속 | CIDR 제한( |
일부 API만 실패 | 파라미터 누락/오타, 권한 부족 |
mold_signDebug로 normalized/URL을 비교하면 원인을 빨리 찾을 수 있습니다.
보안
API/Secret 키는 민감정보입니다. 노출 시 즉시 재발급(회전) 하세요.
stdio 모드에선 stdout은 프로토콜 전용, 로그는 stderr만 사용해야 합니다.
라이선스
LICENSE 파일을 확인하세요(MIT).
변경 이력(요약)
연결정보 툴 추가(get/set + 디스크 저장)
mold_*네임스페이스로 툴 이름 정규식 대응listApis기반 자동 도구 등록비동기 API 폴링 옵션 지원
브래킷 표기 변환기로 중첩 파라미터 처리
SHA1/SHA256 서명 알고리즘 토글
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
- AlicenseBqualityDmaintenanceEnables interaction with ACOMO API through MCP tools and resources. Provides comprehensive API exploration, operation calling, and schema inspection capabilities for ACOMO backend services.Last updated82MIT
- FlicenseBqualityCmaintenanceConnects AI agents to Modal.com infrastructure, allowing management of deployments, apps, containers, volumes, secrets, and environments via MCP tools.Last updated30

Coreshub MCP Serverofficial
Alicense-qualityDmaintenanceEnables interaction with the CoreHub cloud platform to manage containers, EPFS filesystems, distributed training, and inference services through MCP tools.Last updated10MIT- Alicense-qualityBmaintenanceExposes the UniFi Network Integration API as MCP tools, dynamically loaded from JSON manifests, with read-only mode by default.Last updatedMIT
Related MCP Connectors
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
34 production API tools over one hosted MCP endpoint.
MCP server exposing the Backtest360 engine API as tools 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/ycyun/ablestack-MCP-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server