eks-maturity-advisor 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., "@eks-maturity-advisor MCP Servercheck the maturity of my EKS cluster"
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.
eks-maturity-advisor MCP Server
skills/eks-maturity-advisor의 스캐너 로직을 MCP(Model Context Protocol) 서버로 노출합니다.
기존 Codex Skill(SKILL.md + 로컬 스크립트 실행)과 달리, 이 서버는 MCP를 지원하는
어떤 클라이언트(Claude Desktop, Claude Code, Cursor 등)에서도 원격 URL로 접속해서 같은
진단 기능을 도구(tool)로 호출할 수 있게 해줍니다.
server.mjs 구조
buildServer() MCP 서버 인스턴스를 만들고 tool 2개를 등록
├─ scan_repo scanRepository() 호출 → renderMarkdown()으로 변환해 반환
└─ scan_live_cluster scanLiveCluster() 호출 → renderMarkdown()으로 변환해 반환
runStdio() 로컬 테스트용. node server.mjs --stdio
runHttp() 실제 배포용. Streamable HTTP 트랜스포트 + Express
├─ (선택) x-api-key 헤더 검증 미들웨어
├─ transports{} mcp-session-id별로 StreamableHTTPServerTransport 보관
├─ POST /mcp 세션 초기화(initialize) 또는 기존 세션으로 요청 처리
├─ GET /mcp 서버→클라이언트 스트림(SSE) 유지
└─ DELETE /mcp 세션 종료buildServer()가 요청마다(정확히는 세션마다) 새 인스턴스를 만드는 게 핵심
Related MCP server: aster-guard
로컬에서 돌려보기
cd mcp-server
npm install
# 방법 1: stdio (Claude Desktop 로컬 설정에 등록해서 테스트)
node server.mjs --stdio
# 방법 2: HTTP (아래 curl로 직접 확인 가능)
node server.mjsHTTP 모드로 띄운 뒤 MCP 핸드셰이크를 직접 확인하려면:
# 1) initialize — mcp-session-id를 응답 헤더에서 받음
curl -i -X POST http://127.0.0.1:3000/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"test","version":"1.0"}}}'
# 2) tools/list, tools/call — 위에서 받은 세션 ID를 mcp-session-id 헤더로 전달
curl -X POST http://127.0.0.1:3000/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "mcp-session-id: <위에서 받은 값>" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"scan_repo","arguments":{"repoRoot":"/absolute/path/to/repo"}}}'실제로 eks-secure-infra 레포를 대상으로 위 방식대로 검증했고, 정상적으로
Quick Wins 위반 항목(예: default ServiceAccount, Ingress TLS 누락)이 markdown으로 반환되는 것을 확인했습니다.
MCP Inspector로 테스트하기
Claude Desktop 같은 실제 AI 클라이언트에 연동하지 않고, MCP 서버 자체만 확인하고 싶을 때 쓰는 공식 도구입니다. curl로 직접 JSON-RPC를 치는 것보다 훨씬 편합니다.
cd mcp-server
npx @modelcontextprotocol/inspector node server.mjs --stdio실행하면 터미널에 이렇게 뜹니다:
⚙️ Proxy server listening on localhost:6277
🔑 Session token: <토큰>
🚀 MCP Inspector is up and running at:
http://localhost:6274/?MCP_PROXY_AUTH_TOKEN=<토큰>이 URL을 브라우저로 열면(토큰이 쿼리스트링에 포함돼 있어 바로 인증됨):
Transport Type: STDIO, Command: node, Arguments: server.mjs --stdio가 이미 채워져 있음 (
npx실행할 때 넘긴 값 그대로 반영된 것)Connect 클릭
상단 Tools 탭 →
scan_repo,scan_live_cluster목록 확인scan_repo선택 →repoRoot에 스캔할 레포의 절대경로 입력 → Run Tool아래에 실제 스캔 결과(markdown)가 그대로 출력됨
중간에 ECONNREFUSED ... /.well-known/oauth-protected-resource 류 에러 로그가 찍혀도 무시해도 됩니다 —
Inspector UI가 기본값으로 다른 포트(원격 SSE 서버용 기본 URL)를 한 번 찔러보고 실패하는 것뿐이고,
우리가 쓰는 stdio 연결과는 무관합니다.
HTTP 모드(node server.mjs, 세션 기반 Streamable HTTP)를 Inspector로 붙이고 싶으면 Transport Type을
Streamable HTTP로 바꾸고 URL에 http://localhost:3000/mcp를 넣으면 됩니다.
원격 배포 후 클라이언트 연결
서버를 아무 Node 호스트(EC2, 컨테이너 등)에 올리고 포트를 열어둔 다음, 클라이언트 설정에 URL만 등록하면 됩니다.
{
"mcpServers": {
"eks-maturity-advisor": {
"url": "https://<배포한-호스트>/mcp",
"headers": { "x-api-key": "<MCP_API_KEY와 동일한 값>" }
}
}
}보안
MCP_API_KEY환경변수를 설정하지 않으면 URL을 아는 누구나scan_live_cluster로 실제 AWS/kubectl 명령을 실행시킬 수 있습니다. 배포 전에 반드시 설정하세요.MCP_API_KEY=<임의의-긴-문자열> node server.mjsscan_live_cluster는 코드상으로는 read-only(kubectl get,aws describe/list/get)만 실행하도록 만들어져 있지만, 서버를 실행하는 자격증명(AWS 프로필/kubeconfig) 자체의 권한 범위는 별개로 최소화해두는 게 안전합니다.
참고 자료
../skills/eks-maturity-advisor/SKILL.md: MCP 서버가 감싸고 있는 원본 스캐너 로직/규칙 문서
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- 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/kiiiiy/K8RVIS-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server