AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Kpic Mcp

mcp-antegral-kpic-mcp · by antegral

약학정보원 MCP 서버

No reviews yet
0 installs
8 views
0.0% view→install

Install

$ agentstack add mcp-antegral-kpic-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-antegral-kpic-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
6mo ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Kpic Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

KPIC MCP Server

[](https://github.com/antegral/agent-for-agent/actions/workflows/ci.yml) [](https://github.com/antegral/agent-for-agent/actions/workflows/codeql.yml)

약학정보원(Korea Pharmaceutical Information Center) API를 위한 Model Context Protocol (MCP) 서버입니다.

기능

이 MCP 서버는 약학정보원의 의약품 정보를 조회할 수 있는 두 가지 도구를 제공합니다:

1. search_drugs_by_name

의약품 이름으로 대략적인 정보를 검색합니다.

파라미터:

  • drugname (string): 검색할 의약품의 이름 (영문 또는 한글)

반환값:

  • 검색된 의약품 목록 (JSON 배열)
  • 각 항목에는 약품명, 제조사, 효능, 용법용량 등의 기본 정보 포함

2. get_drug_detail_by_id

의약품 코드로 상세 정보를 조회합니다.

파라미터:

  • drugcode (string): 의약품 코드 (search_drugs_by_name의 결과에서 획득)

반환값:

  • 의약품의 상세 정보 (JSON 배열)
  • 포함 정보: 성분, 첨가제, 보관방법, 주의사항, 임부/수유부 정보 등

설치

pnpm install

빌드

pnpm build

실행

pnpm start

개발 모드

pnpm dev

테스트

pnpm test

MCP 클라이언트 설정

Claude Desktop 또는 다른 MCP 클라이언트에서 이 서버를 사용하려면, 설정 파일에 다음을 추가하세요:

{
  "mcpServers": {
    "kpic": {
      "command": "node",
      "args": ["/path/to/kpic-mcp/dist/index.js"]
    }
  }
}

프로젝트 구조

kpic-mcp/
├── src/
│   ├── index.ts          # MCP 서버 메인 엔트리포인트
│   ├── kpic-api.ts       # KPIC API 클라이언트 함수
│   └── types.ts          # TypeScript 타입 정의
├── __tests__/
│   └── kpic-api.test.ts  # 테스트 코드
├── dist/                 # 빌드 결과물 (TypeScript 컴파일 후)
├── package.json
├── tsconfig.json
└── README.md

사용 예시

의약품 검색

// 타이레놀 검색
search_drugs_by_name("타이레놀")

상세 정보 조회

// 특정 의약품 코드로 상세 정보 조회
get_drug_detail_by_id("2013062800004")

기술 스택

  • Runtime: Node.js 18+
  • Language: TypeScript 5.x
  • Framework: MCP SDK (@modelcontextprotocol/sdk)
  • HTTP Client: Native Fetch API
  • Testing: Jest + ts-jest
  • Code Quality: ESLint, Prettier
  • Package Manager: pnpm

라이선스

MIT

주의사항

이 서버는 약학정보원의 공개 API를 사용합니다. API 사용 시 해당 사이트의 이용 약관을 준수해야 합니다.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.