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

igniral-mcp-server

v1.0.5

Published

Igniral MCP Server — Model Context Protocol bridge for AI agents to interact with Igniral's backend APIs

Readme

Igniral MCP Server

Igniral — Production-Ready Backends with AI Speed

Model Context Protocol (MCP) server that bridges AI agents (Claude, Cursor, Antigravity, etc.) with Igniral's backend platform. Describe your API in plain English — Igniral generates the schema, CRUD endpoints, authentication, Swagger docs, and antivirus-protected file storage automatically.

What is Igniral?

Igniral lets you generate 100% of your API infrastructure with a simple prompt, or build manually using a Visual Schema Builder. Everything is production-ready from the start:

  • 🤖 AI-Powered Generation — Describe your data model, get a complete REST API instantly
  • 🔐 Built-in Auth & RBAC — JWT authentication with role-based access control, no auth code needed
  • 📄 Always-Sync Swagger — OpenAPI docs update automatically with every change
  • 🛡️ Antivirus File Storage — Every uploaded file is scanned by ClamAV before reaching your infrastructure
  • 📊 Real-time Analytics — Monitor API usage, error rates, and traffic from your dashboard
  • 🗄️ Managed Database — Automatic backups and replication, zero DBA required

Get started for free at igniral.comStart Now

Prerequisites

  1. Create an Igniral account at igniral.com (free tier available)
  2. Generate Agent API Keys from the Igniral Dashboard → Agent API Keys
  3. Have Node.js ≥ 18 installed on your machine

Important: This is an MCP server — it runs inside your AI-powered IDE (Claude Desktop, Cursor, Antigravity, etc.), not directly from the terminal. You configure it once in your IDE settings, and the IDE handles starting and stopping it automatically.

Quick Start

Choose your IDE and add the following configuration. Replace agent-xxxxxxxxxxxx and your-client-secret with your actual Agent API Key credentials.

Claude Desktop

Edit your claude_desktop_config.json:

{
  "mcpServers": {
    "igniral": {
      "command": "npx",
      "args": ["-y", "igniral-mcp-server"],
      "env": {
        "IGNIRAL_CLIENT_ID": "agent-xxxxxxxxxxxx",
        "IGNIRAL_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Cursor

Edit your .cursor/mcp.json:

{
  "mcpServers": {
    "igniral": {
      "command": "npx",
      "args": ["-y", "igniral-mcp-server"],
      "env": {
        "IGNIRAL_CLIENT_ID": "agent-xxxxxxxxxxxx",
        "IGNIRAL_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Antigravity (Google)

Edit ~/.gemini/antigravity/mcp_config.json:

{
  "mcpServers": {
    "igniral": {
      "command": "npx",
      "args": ["-y", "igniral-mcp-server"],
      "env": {
        "IGNIRAL_CLIENT_ID": "agent-xxxxxxxxxxxx",
        "IGNIRAL_CLIENT_SECRET": "your-client-secret"
      }
    }
  }
}

Note: Antigravity may not inherit your shell's PATH. Use the absolute path to node (e.g., /opt/homebrew/Cellar/node/25.9.0_2/bin/node) if you get "executable not found" errors.

That's it! After saving the configuration and restarting your IDE, you can ask your AI agent things like:

  • "Build me a gym management API"
  • "Create a REST API for a pet store with products, orders, and users"
  • "List my existing Igniral applications"

Tools

Once configured, the following tools are available to your AI agent:

| Tool | Description | |------|-------------| | igniral_generate_schema_from_prompt | Auto-generate a complete app from a natural language description | | igniral_create_application | Create an empty application shell manually | | igniral_create_dynamic_endpoint | Add API endpoints to an existing application | | igniral_list_applications | List the user's existing applications |

Architecture

AI Agent (Claude/Cursor)
    │
    ▼ (MCP Protocol - stdio)
┌──────────────────────────┐
│   Igniral MCP Server     │
│   ├─ TokenManager        │  ← OAuth2 client_credentials
│   ├─ Zod Validation      │
│   ├─ SSE Client          │
│   └─ HTTP Client         │
└────────────┬─────────────┘
             │ (HTTP + JWT with sub=userId)
     ┌───────┼───────┐
     ▼       ▼       ▼
auth-     ai-schema-  json-elements
server    builder     microservice
(token)   (auto-gen)  (CRUD)

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | IGNIRAL_CLIENT_ID | ✅ | Agent API Key client ID (from Dashboard) | | IGNIRAL_CLIENT_SECRET | ✅ | Agent API Key client secret (shown once at creation) | | IGNIRAL_AUTH_URL | ❌ | Auth server URL (default: https://auth.igniral.com) | | IGNIRAL_API_URL | ❌ | API URL (default: https://api.igniral.io) | | IGNIRAL_AI_API_URL | ❌ | AI API URL (default: https://ai.igniral.com) |

Development (from source)

Only needed if you want to contribute or modify the server:

git clone https://github.com/igniral/igniral-mcp-server.git
cd igniral-mcp-server
npm install
cp .env.example .env   # Edit with your credentials
npm run dev             # Start in development mode
npm run inspect         # Test with MCP Inspector

Links

License

MIT