ShipMCP

ShipMCP

Enables LLMs to understand and work with shipbuilding terminology (Korean/English), including search, translation, and explanation of terms across 14 categories with 364 terms.

Category
Visit Server

README

ShipMCP

조선소/선박 전문 용어를 LLM이 정확히 이해하도록 돕는 MCP 서버입니다.

  • Korean + English shipbuilding terminology
  • 실제 업무에서 자주 쓰는 조선, 선급, IMO, 설계/생산 용어 포함
  • MCP 표준 Primitive인 Resources, Tools, Prompts 제공

What This Server Provides

1) Resources

클라이언트가 컨텍스트로 로드할 수 있는 정적/조회형 데이터입니다.

  • shipmcp://categories
  • shipmcp://category/{category_id}
  • shipmcp://term/{term_id}
  • shipmcp://search/{query}
  • shipmcp://glossary

2) Tools

모델이 호출할 수 있는 실행형 함수입니다.

  • search_ship_terms(query, max_results=10)
  • get_term_detail(term_id_or_name)
  • list_terms_by_category(category_id)
  • list_categories_tool()
  • translate_term(term, from_lang="en", to_lang="ko")
  • get_term_statistics()

3) Prompts

재사용 가능한 프롬프트 템플릿입니다.

  • learn_term(term_name)
  • korean_english_glossary(category="all")
  • explain_document(text)
  • compare_terms(term1, term2)

Data Coverage

현재 데이터 기준:

  • Categories: 14
  • Terms: 364

카테고리 목록:

  • ship-types
  • hull-structure
  • propulsion
  • navigation
  • cargo
  • safety
  • shipbuilding-process
  • ship-dimensions
  • design
  • marine-engineering
  • mooring-anchoring
  • electrical
  • classification
  • welding-fabrication

Requirements

  • Python 3.10+
  • uv

Installation

git clone <your-repo-url>
cd ShipMCP
uv sync

Run

기본(권장) STDIO 모드:

uv run ship-mcp

또는 모듈 직접 실행:

uv run python -m ship_mcp.server

HTTP 모드 예시:

# Streamable HTTP
uv run ship-mcp --transport streamable-http --host 0.0.0.0 --port 8000

# SSE
uv run ship-mcp --transport sse --port 8000

MCP Client Setup

Claude Desktop

claude_desktop_config.json 예시:

{
  "mcpServers": {
    "shipmcp": {
      "command": "uv",
      "args": ["run", "--directory", "C:\\path\\to\\ShipMCP", "ship-mcp"],
      "env": {}
    }
  }
}

Claude Code

claude mcp add shipmcp -- uv run --directory C:\\path\\to\\ShipMCP ship-mcp

Usage Examples

권장 호출 순서:

  1. search_ship_terms 로 후보 검색
  2. get_term_detail 로 상세 정보 조회
  3. 필요 시 translate_term 으로 번역

예시 질의:

  • "용골이 뭐야?"
  • "DWT 뜻 알려줘"
  • "Bulk Carrier와 Tanker 차이 비교"
  • "이 문단의 조선 용어를 풀어서 설명해줘"

Project Structure

ShipMCP/
├─ pyproject.toml
├─ README.md
└─ ship_mcp/
   ├─ __init__.py
   ├─ server.py
   └─ data/
      ├─ __init__.py
      ├─ categories.py
      ├─ terms.py
      ├─ terms_imo.py
      └─ terms_shipyard.py

Development Notes

  • 엔트리포인트: pyproject.toml 의 ship-mcp = ship_mcp.server:main
  • 기본 전송 프로토콜: stdio
  • 지원 전송 프로토콜: stdio, sse, streamable-http

License

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
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
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
VeyraX MCP

VeyraX MCP

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

Official
Featured
Local
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
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
E2B

E2B

Using MCP to run code via e2b.

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
Qdrant Server

Qdrant Server

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

Official
Featured