# Bika.ai — MCP server on mcp.ai > Connect your Bika.ai account and use 8 tools for databases straight from your AI agent. Connect with your own API key. Bika.ai is an AI automation database platform for managing spaces, teams, records, automations, and outgoing webhooks. By: mcp.ai · official Page: https://mcp.ai/bika ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_bika?ms=1787293560000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/bika/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/bika/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/bika/skill.md Postman collection (v2.1): https://mcp.ai/bika/postman.json ## Tools - bika_create_records(records: object[], space_id: string, field_key?: string, database_id: string) — Create one to ten records in a Bika database in one request and return every created record ID and field value. - bika_delete_records(space_id: string, record_ids: string[], database_id: string) — Permanently delete one to ten explicitly identified records from a Bika database and return a deletion result for each ID. This deletion is permanent. - bika_get_database_schema(space_id: string, database_id: string) — Get a Bika database's metadata, views, and field definitions, including the field IDs needed to read and write records by ID. - bika_get_record(space_id: string, field_key?: string, record_id: string, database_id: string) — Get one Bika record by ID, with field values keyed by field name or field ID. - bika_list_nodes(space_id: string) — List the nodes in a Bika space so an agent can discover database and automation resource IDs by name, type, and path. - bika_list_records(fields?: string[], space_id: string, field_key?: string, page_size?: integer, database_id: string, next_cursor?: string) — Return one cursor-controlled page of records from a Bika database, optionally selecting specific fields by name or ID. - bika_list_spaces() — List spaces available to the connected Bika account and return the space IDs needed by database tools. - bika_update_records(records: object[], space_id: string, field_key?: string, database_id: string) — Update fields on one to ten existing Bika records in one request and return the updated records. ## Example prompts - "What can I do in Bika.ai?" - "Show me a summary of my Bika.ai account" ## Links Docs: https://mcp.ai/docs/mcps/bika Website: https://mcp.ai/mcps/bika