Igniral MCP Server
Bridges AI agents with Igniral's platform to generate production-ready backends from natural language descriptions.
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.com ā Start Now
Prerequisites
- Create an Igniral account at igniral.com (free tier available)
- Generate Agent API Keys from the Igniral Dashboard ā Agent API Keys
- 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 tonode(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
- š Website: igniral.com
- š Documentation: igniral.com/docs
- š¬ Community: Discord
- š§ Support: support@igniral.com
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.