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

niceform-mcp-server

v0.1.0

Published

MCP server for niceform.ai - Create forms using AI from any MCP-compatible client

Downloads

83

Readme

niceform-mcp-server

MCP (Model Context Protocol) server for niceform.ai - Create AI-powered forms from any MCP-compatible client like Claude Desktop.

Features

  • create_form - Generate forms from natural language descriptions
  • get_preview_url - Preview forms before publishing
  • publish_form - Make forms live and publicly accessible

Installation

From npm (when published)

npm install -g niceform-mcp-server

From source

# Clone the repository
git clone https://github.com/niceform/form-platform-web-app
cd form-platform-web-app

# Install dependencies
npm install

# Build the MCP server
npm run mcp:build

Configuration

Get an API Key

  1. Sign in to niceform.ai
  2. Go to SettingsAPI Keys
  3. Create a new API key
  4. Copy the key (it's only shown once!)

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | NICEFORM_API_KEY | Yes | Your niceform.ai API key | | NICEFORM_API_URL | No | API base URL (defaults to https://www.niceform.ai) |

Usage with Claude Desktop

Add to your Claude Desktop configuration file:

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

{
  "mcpServers": {
    "niceform": {
      "command": "npx",
      "args": ["niceform-mcp-server"],
      "env": {
        "NICEFORM_API_KEY": "nf_live_your_api_key_here"
      }
    }
  }
}

Or if installed globally:

{
  "mcpServers": {
    "niceform": {
      "command": "niceform-mcp",
      "env": {
        "NICEFORM_API_KEY": "nf_live_your_api_key_here"
      }
    }
  }
}

Available Tools

create_form

Create a new form from a natural language description.

Parameters:

  • description (required): Natural language description of the form
  • style_preference (optional): One of modern, minimal, colorful, professional, default

Example:

Create a customer feedback form for a coffee shop with:
- Overall rating (1-5 stars)
- Service quality rating
- Coffee quality rating
- Free text comments
- Optional email for follow-up

get_preview_url

Get the preview URL for a form to see how it looks.

Parameters:

  • form_id (required): The form ID from create_form

publish_form

Publish a form to make it publicly accessible.

Parameters:

  • form_id (required): The form ID to publish
  • name (optional): Override the form name

Example Workflow

You: Create a simple contact form with name, email, and message fields

Claude: [Uses create_form tool]
        Form created! Preview URL: https://www.niceform.ai/forms/abc123

You: Looks good, publish it

Claude: [Uses publish_form tool]
        Published! Share this URL: https://www.niceform.ai/forms/abc123

Development

# Watch mode (auto-rebuild on changes)
npm run mcp:dev

# Build once
npm run mcp:build

# Run the server directly
npm run mcp:start

Troubleshooting

"NICEFORM_API_KEY is not set"

Make sure your API key is correctly set in the Claude Desktop config file. The key should start with nf_live_ or nf_test_.

"Invalid API key"

Your API key may have been revoked or expired. Generate a new one from the niceform.ai dashboard.

"Rate limit exceeded"

You've made too many requests. Wait for the retry period indicated in the error message.

Tools not appearing in Claude

  1. Restart Claude Desktop after updating the config
  2. Check the config file syntax (must be valid JSON)
  3. Verify the command path is correct

License

MIT

Links