Overview of the Model Context Protocol (MCP) servers used for discovery and execution within the nuxt-auto-crud ecosystem.
The nuxt-auto-crud ecosystem is designed for "Agentic First" operations. This is achieved through a two-tier MCP (Model Context Protocol) strategy that allows AI agents to discover system capabilities and execute operations without hardcoded configurations.
Server: nac-schema-inspector (mcp-server-fetch-typescript)
This tier is used for Schema Awareness. It connects to the /_meta endpoint of any nuxt-auto-crud instance to retrieve a markdown or JSON representation of the entire database schema, including pluralized endpoint mapping and field constraints.
/api/_meta?format=mdServer: nac-bridge
This is the CRUD Execution Engine. It provides a standardized interface for agents to perform create, list, get, update, and delete operations directly against the engine.
For maximum reliability, AI agents should follow this sequence:
nac-schema-inspector to fetch the current schema metadata.nac-bridge to perform the operation with schema-accurate payloads.When configuring MCP servers in a local environment (e.g., mcp_config.json), ensure that special characters in tokens are handled correctly:
+) in NUXT_API_SECRET_TOKEN query params must be encoded as %2B to prevent signature mismatches during authentication.