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

@dodo-planet/mcp

v0.1.6

Published

Dodo Planet MCP server — exposes 47 family-trip functions to Claude Code, Cursor, Codex via stdio.

Readme

@dodo-planet/mcp

Dodo Planet 가족 여행 데이터를 Model Context Protocol로 노출하는 stdio 서버. Claude Code, Cursor, Codex, Cline 등 MCP 호환 코딩 에이전트에서 자연어로 호출 가능.

사전 작업

먼저 @dodo-planet/cli로 PAT 등록(또는 DODO_TOKEN 환경변수 설정).

Claude Code

claude mcp add dodo -- npx -y @dodo-planet/mcp

또는 ~/.config/dodo/credentials.json을 못 읽는 sandboxed 환경에서:

claude mcp add dodo --env DODO_TOKEN=dodo_pat_xxx -- npx -y @dodo-planet/mcp

Cursor / Cline

mcpServers 설정에 추가:

{
  "mcpServers": {
    "dodo": {
      "command": "npx",
      "args": ["-y", "@dodo-planet/mcp"],
      "env": {
        "DODO_TOKEN": "dodo_pat_xxx"
      }
    }
  }
}

Codex

codex mcp add dodo --command "npx -y @dodo-planet/mcp" --env DODO_TOKEN=dodo_pat_xxx

환경변수

  • DODO_TOKEN — PAT (CLI credentials 파일 무시)
  • DODO_API_URL — API 엔드포인트 (기본 https://www.dodoplanet.space)
  • DODO_CONFIG_HOME — 설정 디렉토리 (CLI와 공유)

노출되는 도구

43개 도메인 함수 — 여행 관리, 경비, 예약, 일정, 피드, 아이 정보, 항공·호텔·액티비티·교통편 검색, 장소·날씨·경로, 가족·친구·초대, 웹 검색.

전체 목록과 인자 스키마는 MCP 클라이언트의 도구 검색 UI에서 확인.

보안 표시:

  • readOnlyHint: true — 읽기 전용 (예: list/get/search)
  • destructiveHint: true — 데이터 삭제 (예: delete_, remove_)
  • idempotentHint: true — 동일 호출이 동일 결과 (read-only와 같음)
  • openWorldHint: true — 외부 정보 (Amadeus, Google Maps, Perplexity, OpenWeather)

동작 방식

[Claude Code/Cursor]
        ↓ MCP stdio
[@dodo-planet/mcp]
        ↓ HTTPS Bearer
[https://www.dodoplanet.space/api/cli/{declarations,execute}]
        ↓ Service Role
[Supabase + Gemini executeFunction]

CLI와 MCP는 동일한 /api/cli/* 엔드포인트를 공유. 시크릿(SUPABASE_SERVICE_ROLE_KEY, Amadeus·Perplexity 키)은 절대 사용자 머신으로 새지 않음.