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

formly-mcp

v1.0.3

Published

Formly MCP server - let AI agents (Claude, Cursor, Codex, OpenClaw) create, edit, and publish Formly forms.

Readme

formly-mcp

npm version license

The official MCP server for Formly — create, edit, publish, and read forms from any AI agent (Claude, Cursor, Codex, ChatGPT, OpenClaw) in plain language.

Formly is an AI-powered, agentic form builder. With this Model Context Protocol (MCP) server, any MCP-compatible agent can build and manage your Formly forms just by chatting — Formly's own AI designs the structure (pages, questions, field types), so you never have to open the dashboard.

Say: "Create a customer feedback survey and publish it" → your agent builds it and hands back a live link.

Quickstart

  1. Get an API key. In Formly, go to Settings → Developer and create a key (requires a Pro plan). Copy the formly_sk_… value.
  2. Add Formly to your agent (pick your client below).
  3. Ask your agent to build or edit a form.

Claude Desktop / Cursor

Add to your MCP config (claude_desktop_config.json or ~/.cursor/mcp.json):

{
  "mcpServers": {
    "formly": {
      "command": "npx",
      "args": ["-y", "formly-mcp"],
      "env": {
        "FORMLY_API_KEY": "formly_sk_your_key_here"
      }
    }
  }
}

Codex CLI

codex mcp add formly --env FORMLY_API_KEY=formly_sk_your_key_here -- npx -y formly-mcp

Claude Code

claude mcp add formly --env FORMLY_API_KEY=formly_sk_your_key_here -- npx -y formly-mcp

Tools

| Tool | What it does | | --- | --- | | create_space | Create a new workspace. | | create_form | Build a brand‑new form from a natural‑language description. | | edit_form | Change an existing form's content by instruction. | | update_form_settings | Branding, redirects, email notifications, SEO, password protection, and more. | | publish_form / unpublish_form | Take a form live or offline. | | list_forms | List your forms. | | get_form | Get a form's full structure and settings. | | get_submissions | Read recent responses to a form. | | list_spaces | List your workspaces. |

Example prompts

  • "Create a workspace called Recruiting and put a job application form inside it."
  • "Build a job application form with name, email, and a resume upload, then publish it."
  • "Add a 1–5 rating question to my customer feedback form."
  • "Make the email field on my contact form required."
  • "Show me the 10 most recent responses to my signup form."

Environment variables

| Variable | Required | Default | Description | | --- | --- | --- | --- | | FORMLY_API_KEY | Yes | — | Your Formly API key (formly_sk_…). | | FORMLY_API_URL | No | https://api.formly.so | Override the API base URL (e.g. for self‑hosting). |

Remote MCP (no install)

Prefer a hosted endpoint? Connect your agent to https://api.formly.so/mcp and send your API key as a bearer token — no npx required.

Requirements

  • Node.js 18+
  • A Formly Pro account (pricing)

Links

  • Website: https://formly.so
  • Developer docs: https://formly.so/developers
  • npm: https://www.npmjs.com/package/formly-mcp

License

MIT