NHN Server MCP

NHN Server MCP

Enables secure SSH access to servers through a gateway with Kerberos authentication, allowing execution of whitelisted commands with pattern-based security controls and server information retrieval.

Category
Visit Server

README

NHN Server MCP

SSH Gateway를 통해 서버에 접속하고 명령어를 실행하는 MCP (Model Context Protocol) 서버입니다.

기능

  • SSH Gateway를 통한 서버 접속
  • Kerberos 인증 (kinit) 지원
  • 명령어 화이트리스트
  • 위험 패턴 차단 (설정 가능)
  • 서버 정보 조회 (AI가 로그 경로 등 확인 가능)
  • 설정 동적 리로드

설치

npm install
npm run build

설정

1. config.json 생성

{
  "gatewayConnection": "user@gateway.example.com:22",
  "gatewayPassword": "your-password",
  "kinitPassword": "your-kerberos-password",
  "allowedHosts": ["server1", "server2"],
  "blockedPatterns": [">", "`", "$(", ";", "&&", "||"],
  "allowedCommands": [
    "tail", "head", "cat", "grep", "ls", "ps", "whoami"
  ],
  "serverInfo": {
    "서버에 대한 user 정보 필수": "exec 할때 user 를 같이 보냅니다.",
    "나머지는": "원하는 내용으로",
    "ex - logPaths": {
      "app": "/var/log/app.log",
      "nginx": "/var/log/nginx/access.log"
    }
  }
}

2. Claude Desktop 설정

~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "nhn-server": {
      "command": "node",
      "args": ["/path/to/nhn-server-mcp/dist/index.js"],
      "env": {
        "CONFIG_FILE": "/path/to/config.json",
        "DEBUG": "false"
      }
    }
  }
}

설정 옵션

설명 기본값
gatewayConnection Gateway SSH 연결 (user@host:port) -
gatewayPassword Gateway SSH 비밀번호 -
kinitPassword Kerberos 인증 비밀번호 -
allowedHosts 접속 허용 호스트 목록 [] (모두 허용)
allowedCommands 실행 허용 명령어 목록 기본 명령어 목록
blockedPatterns 차단할 패턴 목록 [">", "\", "$(", ";", "&&", "||"]`
serverInfo AI에게 노출할 서버 정보 {}

환경변수

변수 설명
CONFIG_FILE config.json 파일 경로
DEBUG 디버그 로그 활성화 (true/false)

MCP 도구

exec

서버에서 명령어를 실행합니다.

{
  "host": "server-hostname",
  "user": "user",
  "command": "tail -100 /var/log/app.log"
}

get_config

서버 설정 정보를 조회합니다. (허용 호스트, 명령어, 서버 정보)

reload_config

설정 파일을 다시 로드합니다.

disconnect_server

Gateway 연결을 종료합니다.

connection_status

현재 연결 상태를 확인합니다.

보안

  • config.json에 민감한 정보(비밀번호)가 포함되므로 git에 커밋하지 마세요
  • blockedPatterns로 위험한 명령어 패턴을 차단합니다
  • allowedHosts로 접속 가능한 서버를 제한합니다
  • allowedCommands로 실행 가능한 명령어를 제한합니다
  • 5분 비활성 시 자동 연결 종료

라이선스

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured