← nifra.dev

INDIVIDUAL MCP TOOL

nifra_docs

Search nifra's framework documentation and get back ONLY the matching sections - auth, uploads, ISR, WebSockets, loaders, deployment, anything.

nifra.devnone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.nifra.dev

No auth detected

Connect to this endpoint to inspect the live schema for nifra_docs and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

nifra.dev

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.nifra-docs]
url = "https://mcp.nifra.dev"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "nifra-docs": {
      "type": "http",
      "url": "https://mcp.nifra.dev"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: nifra-docs
Remote MCP URL: https://mcp.nifra.dev

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "nifra-docs": {
      "url": "https://mcp.nifra.dev"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "nifra-docs": {
      "type": "http",
      "url": "https://mcp.nifra.dev"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "nifra-docs",
  "transport": "streamable-http",
  "url": "https://mcp.nifra.dev"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • nifra_example — Get a VERIFIED, copy-pasteable nifra code example for a task - auth route, file upload, ISR page, loader/action, typed client, SSE, deployment, etc.
  • nifra_types — Get the EXACT TypeScript declaration of any exported @nifrajs/* symbol - interface, type, class, function, const.
  • nifra_learn — Walk the guided path to build a nifra app end to end - an ORDERED sequence (create → page route → loader → typed API → typed client → auth → background jobs → deploy), not the random-access search of nifra_docs/nifra_example.
  • nifra_gallery — Open an interactive, filterable gallery of ALL of nifra's verified code examples (MCP Apps widget) - for browsing and discovering what exists.