Ainative Prd MCP server
PRD Generator MCP — generate, validate, and manage Product Requirement Documents.
0 stars48 downloads/wk
Reviews
Write oneNobody has reviewed Ainative Prd yet.
If you have run it, two minutes of your experience saves the next person an afternoon.
Ainative Prd tools (27, 1 write)
write = sends, deletes, buys or postsRead from the package source without running it. The installed server may list more.
TimelinePRD includes timeline, milestones, or schedule
agent-capabilityPRD for AI agent capabilities and MCP servers — tools, memory strategy, sequential thinking, hosting
ainative-featureAINative-specific feature PRD with service integration, architecture compliance checklist, and TDD test plan
prd_check_api_refsVerify that all API endpoint references in a PRD actually exist in the AINative OpenAPI spec. Catches typos and invalid paths.
prd_create_templatewrite actionCreate a custom PRD template. Stored persistently in ZeroDB so it survives across sessions.
prd_from_issueGenerate a PRD from a GitHub issue. Fetches the issue title, body, labels, and comments, then expands them into a full PRD with AINative platform context.
prd_generateGenerate a comprehensive Product Requirements Document (PRD) for an AINative feature, integration, or product. Uses AI with full AINative platform context — knows all services, APIs, SDKs, and architectural constraints. The PRD is automatically saved to ZeroMemory for cross-session recall.
prd_generate_sectionGenerate or regenerate a single section of a PRD. Useful for iterative refinement — update just the Technical Architecture or User Stories without regenerating the entire document.
prd_get_api_catalogGet API endpoint details for a specific AINative service or category. Returns endpoint paths, methods, and descriptions from the OpenAPI catalog.
prd_get_templateGet a PRD template by name. Returns the full Markdown template with placeholder variables.
prd_historyGet version history for a PRD, showing how it evolved over time. Returns unified diffs between versions.
prd_list_servicesList all AINative products and services with descriptions, categories, API prefixes, SDKs, and pricing tiers. Use this before writing a PRD to understand what platform capabilities are available.
prd_list_templatesList all available PRD templates (built-in and custom). Each template has a specific structure optimized for different types of products and features.
prd_loadLoad a saved PRD by its artifact ID. Use at the start of a session to resume work on an existing PRD.
prd_refineRefine an existing PRD based on feedback. Provide the PRD ID and feedback, and the AI will update the document while preserving version history.
prd_render_templateRender a template with variable substitution (no AI, pure placeholder replacement). Fast and deterministic.
prd_saveSave a PRD to ZeroDB as a persistent plan artifact. Returns an ID you can use to load, update, or search for it in future sessions. Version history is tracked automatically on every update.
prd_scoreScore a PRD completeness from 0-100 based on section coverage, content quality, and AINative integration depth.
prd_searchSemantic search across all saved PRDs. Find PRDs by topic, service name, feature description, or any natural language query.
prd_suggest_stackGiven a set of requirements, suggest which AINative services, APIs, and SDKs to use. Returns a recommended technology stack with justifications.
prd_validateValidate a PRD against quality rules and AINative architectural constraints. Checks for required sections, content completeness, AINative service references, and architecture compliance.
skill_getGet the full content of a skill by slug or name, including its SKILL.md body and (optionally) all reference files. Use this to load a skill before doing the work it describes.
skill_get_referenceGet a single reference file for a skill (e.g., "references/testing-patterns.md"). Load reference files on demand when the SKILL.md says to.
skill_listList all Agent Skills available in the skills repo (the8genc/ai-8gent-skills by default). Each entry includes the skill name, slug, description (with trigger phrases), and its reference files. Skills are pulled live from GitHub. Call this first to discover which skills exist before applying one.
skill_searchSemantic search across all skills to find the right one for a task. Queries the ZeroDB mirror when available (run skill_sync first), otherwise falls back to keyword matching over the live GitHub list.
skill_syncMirror skills from the GitHub repo into ZeroDB so they can be semantically searched and served offline. GitHub remains the source of truth — this refreshes the cache. Sync all skills, or one by slug.
standardGeneral-purpose PRD template with all standard sections
Public scan report
scanner v0.1.9 · 2026-09-24 · same rubric, same numbers if you re-run it
- Code scan13 source files scanned25/25
- –Live reliabilityno gateway calls yet and no remote to proben/a
- –Tool poisoningtools not inspected (local package is not executed); not countedn/a
- Auth qualitylocal package, no credentials required12/15
- Maintenancelast push 54 days ago12/15
- Maintainer identityregistry namespace matches repository owner; GitHub account older than a year9/10
What the publisher says
From the Ainative Prd repository's README, as published. We do not edit it. Read it on GitHub
AINative PRD Generator MCP Server
Generate production-ready Product Requirement Documents with full AINative platform awareness and persistent memory.
An MCP (Model Context Protocol) server that helps AI agents and developers create, validate, and manage PRDs. Unlike generic PRD tools, this server knows every AINative service, API endpoint, SDK, and architectural constraint — so your PRDs reference real platform capabilities from day one.
Why This MCP?
Requirements
An AINative account is required for full functionality. The server uses ZeroDB (AINative's data platform) for:
- Persistent PRD storage with automatic version tracking
- Semantic search across all your saved PRDs
- AI-powered PRD generation via AINative's chat completions API
- Custom template storage
No account yet? The server auto-provisions a free ZeroDB instance on first run. You'll get a claim URL to take ownership of your data.
Get a permanent account:
npx zerodb-cli init # Interactive setup
# or sign up at https://ainative.studioWithout credentials, the server still works in template-only mode — template rendering, validation, platform discovery, and scoring all function without an account. Only AI generation and memory/persistence features require authentication.
Quick Start
Option 1: npx (recommended)
npx ainative-prd-mcpOn first run with no credentials, the server:
- Provisions a free ZeroDB instance (~800ms)
- Saves credentials to .mcp.json and .env
- Prints a claim URL — visit it to take permanent ownership
Option 2: With existing API key
ZERODB_API_KEY=ak_your_key npx ainative-prd-mcpMCP Configuration
Add to your Claude Code, Cursor, or Windsurf MCP config:
{
"mcpServers": {
"prd-generator": {
"command": "npx",
"args": ["-y", "ainative-prd-mcp"],
"env": {
"ZERODB_API_KEY": "ak_your_key",
"ZERODB_API_URL": "https://api.ainative.studio"
}
}
}
}No API key? Omit the env block — the server auto-provisions:
{
"mcpServers": {
"prd-generator": {
"command": "npx",
"args": ["-y", "ainative-prd-mcp"]
}
}
}Tools (23)
Generation (4 tools)
Templates (4 tools)
Built-in templates:
- standard — General-purpose PRD with all standard sections
- ainative-feature — AINative feature PRD with architecture compliance checklist, TDD test plan, and service mapping
- agent-capability — Agent/MCP server PRD with tool schemas, memory strategy, and hosting plan
Validation (3 tools)
Shortened. The full README is on GitHub.
Nothing above is checked by us. What we check is on the safety report.
Install directly
Runs npx -y ainative-prd-mcp on your machine. Read the scan report first; the gateway never runs local packages.
claude mcp add ainative-prd-mcp -- npx -y ainative-prd-mcp
Ainative Prd: common questions
- Is Ainative Prd MCP server safe?
- Yes, by our scan: it is graded A (89/100). Read the Ainative Prd safety report
- How do I install Ainative Prd?
- It runs on your machine. Copy the Claude Code, Claude Desktop or Cursor config from the install section.
- Does Ainative Prd need an API key?
- Not as far as the registry entry and our scan can tell: no credentials are declared or required.
- Is Ainative Prd maintained?
- The last commit was 55 days ago (2026-08-01). The latest release is v1.1.1.
- What can I use instead of Ainative Prd?
- Servers from other publishers that do the same job: HS Code Classifier MCP server, MCP server and Loki Mode MCP server. Compare all Ainative Prd alternatives.
Alternatives to Ainative Prd
Same job from other publishers: the closest match first, then the best rated.
- HS Code ClassifierClassify products to official HS codes and validate supplier codes before customs submissionsnot reviewedGrowingC
- MCPProduct mockup API. Render PSD and 2D mockups, generate videos, manage async jobs and webhooks.not reviewedGrowingB
- Loki ModeAutonomous spec-to-product coding-agent CLI with an MCP server exposing 36 tools over stdio.not reviewedEstablishedB
- COTAL actions (cotal.ai)cotal.ai actions: product overview, site search, build log, feedback, Cloud waitlist, updates, callsnot reviewedEstablishedB
- ShopwareQuery and safely manage a Shopware 6 shop: products, orders, customers, stock, audits, reports.not reviewedEstablishedB