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

appmake-mcp-client

v1.0.13

Published

AppMake MCP Server Client for Claude Desktop - Mobile app development tools integration

Downloads

62

Readme

@appmake/mcp-client

npm version License: MIT

AppMake MCP Server Client for Claude Desktop - Integrate mobile app development tools directly into Claude

🚀 Quick Start

One-line Installation & Setup

npx @appmake/mcp-client setup YOUR_API_KEY

This command will:

  1. Install the MCP client
  2. Configure Claude Desktop automatically
  3. Test the connection
  4. Show you how to use it

📦 Installation

Global Installation (Recommended)

npm install -g @appmake/mcp-client

Local Installation

npm install @appmake/mcp-client

⚙️ Configuration

Automatic Setup

After installation, run:

appmake-mcp-setup

You'll be prompted for your API key, and the setup will be completed automatically.

Manual Setup

Add the following to your Claude Desktop config file:

Windows: %APPDATA%\Claude\claude_desktop_config.json macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "appmake": {
      "command": "npx",
      "args": ["appmake-mcp-client"],
      "env": {
        "APPMAKE_API_KEY": "YOUR_API_KEY_HERE"
      }
    }
  }
}

환경 변수:

  • APPMAKE_API_KEY (필수): AppMake MCP API Key
  • MCP_SERVER_URL (선택): 서버 URL (기본값: https://mcp.appmake.co.kr)

🔑 Getting an API Key

  1. Visit AppMake
  2. Sign up or log in to your account
  3. Navigate to API settings
  4. Generate your MCP API key

🛠️ Available Tools

Once configured, Claude will have access to these AppMake tools:

App Management

  • CreateApp - Create a new mobile app project
  • GetAppList - List all your apps
  • GetAppInfo - Get detailed app information
  • UpdateAppInfo - Update app configuration

File Management

  • UploadFile - Upload files to your app
  • DownloadFile - Download app resources
  • DeleteFile - Remove files from your app

Build & Deployment

  • BuildApp - Build your app for iOS/Android
  • GetBuildStatus - Check build progress
  • DeployApp - Deploy to app stores

Analytics & Monitoring

  • GetAppStats - View app statistics
  • GetUserAnalytics - User behavior analytics
  • GetCrashReports - Access crash reports

💡 Usage Examples

After setup, restart Claude Desktop and you can:

"Create a new mobile app called MyAwesomeApp"
"Show me all my apps"
"Build MyApp for Android"
"Upload this icon to MyApp"
"Check the build status of MyApp"

🔧 Environment Variables

You can customize the behavior with these environment variables:

  • MCP_SERVER_URL - MCP server URL (default: https://mcp.appmake.co.kr)
  • MCP_API_KEY - Your AppMake API key
  • DEBUG - Enable debug mode (true/false)
  • TIMEOUT - Request timeout in ms (default: 30000)

📝 Troubleshooting

Claude Desktop doesn't recognize the MCP server

  1. Make sure Claude Desktop is completely closed
  2. Verify the config file is in the correct location
  3. Check that the API key is valid
  4. Restart Claude Desktop

Connection errors

# Test your connection
npx @appmake/mcp-client test

Debug mode

Enable debug output by setting the DEBUG environment variable:

{
  "mcpServers": {
    "appmake": {
      "command": "npx",
      "args": ["@appmake/mcp-client"],
      "env": {
        "MCP_API_KEY": "YOUR_API_KEY",
        "DEBUG": "true"
      }
    }
  }
}

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

📄 License

MIT License - see LICENSE file for details.

🔗 Links

📞 Support

  • Email: [email protected]
  • Documentation: https://docs.appmake.co.kr
  • Community Forum: https://community.appmake.co.kr

Made with ❤️ by AppMake Team