npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

tossinvest-openapi-mcp

v0.1.1

Published

MCP server that helps developers and AI agents explore and integrate the Toss Securities (토스증권) Open API.

Readme

tossinvest-openapi-mcp

토스증권 Open API를 개발자와 AI 에이전트가 쉽게 탐색·연동할 수 있도록 돕는 MCP(Model Context Protocol) 서버.

npm version License: MIT MCP Node

언어: 한국어 · English · 日本語

이 서버는 토스증권 OpenAPI(Toss Securities Open API, 토스증권 오픈API) 명세를 내장하여 MCP 도구로 제공합니다. 읽기 전용 문서/탐색 서버로, 실제 API를 호출하거나 주문을 실행하지 않으며 어떤 인증 정보도 필요로 하지 않습니다. Claude·Cursor·Codex 등 MCP를 지원하는 AI 코딩 에이전트에 연결한 뒤 "토스증권 API로 주문을 어떻게 넣어?" 같이 물어보면, 명세에 근거한 정확한 답변과 코드 샘플을 얻을 수 있습니다.

토스증권 Open API 연동을 처음 시작하는 개발자가 엔드포인트·인증·주문/시세 API 구조를 빠르게 파악하고, AI 에이전트로 코드를 생성하는 데 활용할 수 있습니다.


개요

MCP 클라이언트에 연결하면 에이전트는 다음을 할 수 있습니다.

  • 토스증권 Open API의 모든 엔드포인트·카테고리 탐색
  • 요청/응답 스키마와 예시 조회
  • 키워드로 엔드포인트·데이터 모델 검색
  • 유스케이스 중심 연동 가이드(인증, 시세, 주문 등) 활용
  • curl / TypeScript / Python 요청 코드 샘플 생성

⚠️ 주의: 이 도구는 토스증권 공개 OpenAPI 문서를 설명하는 비공식 도구입니다. 실제 매매 실행, 계좌 접근, 인증 정보 전송을 하지 않습니다. 운영 적용 전 반드시 공식 토스증권 문서로 검증하세요.

제공 도구

| 도구 | 용도 | |---|---| | get_api_overview | API 전체 개요 (여기서 시작) | | list_categories | 카테고리(태그) 목록과 설명 | | list_endpoints | 엔드포인트 목록 (카테고리 필터 가능) | | search_endpoints | 키워드 기반 엔드포인트 검색 | | get_endpoint | 단일 엔드포인트 상세(파라미터·본문·응답) | | list_schemas | 데이터 모델 이름 목록/필터 | | get_schema | 단일 데이터 모델의 필드 트리 | | get_integration_guide | 호출 시퀀스를 포함한 유스케이스 가이드 | | generate_code_sample | 엔드포인트별 curl/TS/Python 코드 샘플 |

요구 사항

  • Node.js 18 이상
  • MCP 호환 클라이언트 (Claude Desktop, Claude Code, Cursor 등)

설치 및 사용 (stdio)

이 서버는 stdio 방식으로 MCP를 통신합니다. 실행 명령을 하나 고른 뒤, 해당 블록을 MCP 클라이언트 설정에 붙여 넣으면 됩니다.

실행 명령

| 소스 | 명령 / 인자 | |---|---| | npm (권장) | npx · -y, tossinvest-openapi-mcp | | GitHub (npm 없이 최신 소스를 직접 실행) | npx · -y, github:JeongSeongMok/tossinvest-openapi-mcp | | 소스에서 실행 (git clone + npm install + npm run build 후) | node · /절대/경로/tossinvest-openapi-mcp/dist/index.js |

Node.js 18+ 만 있으면 npx -y tossinvest-openapi-mcp 로 바로 실행됩니다. GitHub 명령은 npm 을 거치지 않고 저장소를 직접 클론·빌드·실행하므로, 항상 최신 소스가 필요할 때 사용합니다.

Claude (Claude Desktop / Claude Code / Cursor) — JSON

{
  "mcpServers": {
    "tossinvest-openapi": {
      "command": "npx",
      "args": ["-y", "tossinvest-openapi-mcp"]
    }
  }
}

Codex CLI — TOML (~/.codex/config.toml)

[mcp_servers.tossinvest-openapi]
command = "npx"
args = ["-y", "tossinvest-openapi-mcp"]

설정 파일 위치

  • Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) / %APPDATA%\Claude\claude_desktop_config.json (Windows)
  • Claude Code: 프로젝트의 .mcp.json, 또는 claude mcp add tossinvest-openapi -- npx -y tossinvest-openapi-mcp 실행
  • Codex CLI: ~/.codex/config.toml
  • Cursor: ~/.cursor/mcp.json

설정 수정 후 클라이언트를 재시작하면 위 도구들이 에이전트에 노출됩니다.

동작 확인

npm run build
node dist/index.js
# → stderr에 "tossinvest-openapi-mcp running on stdio" 출력 후 stdin으로 MCP 메시지 대기

개발

src/
├─ index.ts        # stdio 진입점
├─ server.ts       # MCP 서버 + 도구 등록
├─ format.ts       # 에이전트 친화적 마크다운 렌더링
├─ codegen.ts      # curl / TS / Python 샘플 생성
├─ guides.ts       # 유스케이스 연동 가이드
└─ spec/store.ts   # openapi.json 로드·인덱싱, $ref 해소

토스증권 OpenAPI 문서는 저장소 루트의 openapi.json에 있으며 배포 패키지에 함께 번들됩니다. 명세를 갱신하려면 이 파일을 교체하고 다시 빌드하세요.

라이선스

MIT