Browse documentation

Start

Nexfiy developer documentation

Read workspace content with the Content API or connect an AI client through MCP.

Nexfiy exposes two public integrations. The Content API is a read-only HTTP API for selected databases. MCP connects compatible AI clients to pages, blocks, templates, and databases.

Choose an integration

Use caseContent APIMCP
Render database content in a website or appRecommended
Build a content pipeline or automationRecommendedOptional
Let an AI assistant search and edit a workspaceRecommended
Use standard JSON over HTTPYesThrough an MCP client
Write workspace contentNoYes, with an authorized environment

Content API

Create a scoped API key, choose the databases it can read, then request either /api/contents or its short alias /api/b.

curl "https://your-nexfiy-host.com/api/contents" \
  --header "Authorization: Bearer $NEXFIY_CONTENT_API_KEY"

Start with the Content API or open the endpoint reference.

Model Context Protocol

Create a client environment in Workspace settings → MCP → Client access. Nexfiy gives you a token-bearing Streamable HTTP URL to add to Codex, Claude, or another MCP client.

Connect an MCP client or review the complete tool catalog.

Documentation for people and agents

Every documentation page has Copy Markdown and Download .md actions. Raw sources are also available from /api/docs/markdown/{slug}.

For AI tools and documentation crawlers, use:

  • /llms.txt for the documentation index.
  • /llms-full.txt for the complete documentation in one Markdown response.

Security model

API keys and MCP environment URLs are credentials. Store them in a secret manager or server-side environment variable, restrict their scope, and revoke them immediately if exposed. Never include either credential in browser JavaScript or a public repository.