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 🙏

© 2025 – Pkg Stats / Ryan Hefner

text-transformer-mcp

v1.0.0

Published

MCP server with text transformation tools

Downloads

23

Readme

text-transformer-mcp

텍스트 변환 도구를 제공하는 MCP (Model Context Protocol) 서버입니다.

📦 설치 방법

방법 1: npx로 직접 사용 (추천)

npx text-transformer-mcp

방법 2: 전역 설치

npm install -g text-transformer-mcp

방법 3: 로컬 설치

npm install text-transformer-mcp

⚙️ 설정

Cursor 설정

npx 사용 시:

{
  "mcpServers": {
    "text-transformer": {
      "command": "npx",
      "args": ["-y", "text-transformer-mcp"]
    }
  }
}

Claude Desktop 설정

~/.config/claude_desktop_config.json 파일을 생성하거나 수정:

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

npx 사용 시:

{
  "mcpServers": {
    "text-transformer": {
      "command": "npx",
      "args": ["-y", "text-transformer-mcp"]
    }
  }
}

🛠️ 사용 가능한 도구

  1. lowercase - 텍스트를 소문자로 변환
  2. uppercase - 텍스트를 대문자로 변환
  3. reverse - 문자열의 순서를 뒤집기
  4. isPalindrome - 팰린드롬 여부 확인
  5. countWords - 단어 수 세기
  6. countCharacters - 글자 수 세기
  7. trim - 앞뒤 공백 제거
  8. capitalize - 각 단어의 첫 글자를 대문자로

🚀 개발

필요한 의존성 설치

npm install

빌드

npm run build

실행

npm start

📝 예제

MCP를 설정한 후 Cursor나 Claude Desktop에서 다음과 같이 사용할 수 있습니다:

"Hello World"를 대문자로 변환해줘
"racecar"가 팰린드롬인지 확인해줘

📄 라이선스

MIT