# Ninox — how to use (mcp.ai)

Connect your Ninox account and use 4 tools for databases straight from your AI agent. Connect with your own API key. Ninox is a low-code platform that enables users to create custom database applications tailored to their specific needs.

## Option A — via MCP (recommended)
Remote MCP endpoint (HTTP, streamable): `https://api.mcp.ai/p_ninox?ms=1787291220000`
Add it as a custom/remote MCP connector in your client (Claude, Cursor, VS Code…), then authenticate when prompted. Once connected, ask the agent to use the server's tools (e.g. `ninox_delete_record`).

## Option B — via direct REST API
Base URL: `https://api.mcp.ai/api/ninox`
Auth: `Authorization: Bearer sk_live_…` — create a workspace API key at https://mcp.ai/settings/api-keys
Discover endpoints: `GET https://api.mcp.ai/api/ninox/_endpoints`

### Endpoints
- `POST https://api.mcp.ai/api/ninox/delete/record` — Tool to delete a record from a specified table. Use after confirming workspace, database, table, and record IDs.
  - body: { team_id: string, table_id: string, record_id: string, database_id: string }
- `POST https://api.mcp.ai/api/ninox/get/databases` — Retrieves all databases within a specific Ninox team. This action lists all databases (workspaces) that belong to a given team in Ninox. Each database contains tables, fields, and records for organizi
  - body: { team_id: string }
- `POST https://api.mcp.ai/api/ninox/get/team` — Retrieves data from a single team (workspace) by its ID. Use when you need to get workspace details including the workspace ID and name.
  - body: { team_id: string }
- `POST https://api.mcp.ai/api/ninox/list/teams` — Retrieves all workspaces (teams) accessible to the authenticated user. This action lists all Ninox teams (workspaces) that the user has access to. Each team contains databases, which in turn contain t

## Example prompts
- "What can I do in Ninox?"
- "Show me a summary of my Ninox account"

## More
- Page: https://mcp.ai/ninox
- Agent spec (llms.txt): https://mcp.ai/ninox/llms.txt
- Postman collection: https://mcp.ai/ninox/postman.json
