# Slite — MCP server on mcp.ai > Connect your Slite account and use 16 tools for documents straight from your AI agent. Connect with your own API key. Your company knowledge base, on autopilot. By: mcp.ai · official Page: https://mcp.ai/slite ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_slite?ms=1787293500000 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/slite/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/slite/ 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/slite/skill.md Postman collection (v2.1): https://mcp.ai/slite/postman.json ## Tools - slite_ask_question(question: string, assistantId?: string, parentNoteId?: string) — Tool to ask a question to your Slite notes in natural language. Use when you need to query or search information across your notes. Supports optional filters to narrow results by parent note or specif - slite_create_note(html?: string, title: string, markdown?: string, attributes?: string[], templateId?: string, parentNoteId?: string) — Tool to create a note from markdown or HTML content with optional template. Use when you need to create a new note in Slite with specified content and title. - slite_delete_note_by_id(note_id: string) — Tool to permanently delete a note and all its children by ID. Use when you need to remove a note irreversibly. This operation cannot be undone. - slite_flag_note_as_outdated(reason: string, note_id: string) — Tool to set Outdated status on a note with a reason. Use when you need to flag a note as containing outdated information. - slite_get_authenticated_user() — Retrieves information about the currently authenticated user. Use this to get user details including email, display name, and organization information. - slite_get_note_by_id(format?: string, noteId: string) — Tool to retrieve a complete note by its ID including content in Markdown or HTML format. Use when you need to fetch the full details and content of a specific note. - slite_get_note_children(cursor?: string, noteId: string) — Tool to retrieve note children by parent note ID. Use when you need to fetch child notes beneath a specified parent note. Supports pagination for notes with more than 50 children using cursor-based na - slite_list_notes(cursor?: string, ownerId?: string) — Tool to list notes from Slite with optional filtering by owner. Use when you need to retrieve notes, optionally filtered by a specific user. Supports cursor-based pagination via the cursor parameter. - slite_search_groups(query: string, cursor?: string) — Tool to search for groups by name in Slite. Use when you need to find groups matching a search query. Supports cursor-based pagination via the cursor parameter. - slite_search_notes(page?: integer, depth?: integer, query?: string, hitsPerPage?: integer, reviewState?: string, parentNoteId?: string, highlightPreTag?: string, includeArchived?: boolean, lastEditedAfter?: string, highlightPostTag?: string) — Tool to search notes based on a query with optional filters. Use when you need to find notes by search term, parent note, review state, or other criteria. Supports pagination and archived note inclusi - slite_search_users(query: string, cursor?: string, includeArchived?: boolean) — Tool to search for users in Slite by email, name, or username. Use when you need to find users in the organization. - slite_update_note(html?: string, title?: string, note_id: string, markdown?: string, attributes?: string[]) — Tool to update a note's content with markdown and/or title. Use when you need to modify an existing note's content or metadata. - slite_update_note_archived_state(note_id: string, archived: boolean) — Tool to update the archived state of a note in Slite. Use when you need to archive or unarchive a note. - slite_update_note_owner(note_id: string, user_id?: string, group_id?: string) — Tool to update the owner of a note. Use when you need to transfer note ownership to a user or group. Either userId or groupId must be provided. - slite_update_tile(url?: string, title?: string, noteId: string, status?: object, tileId: string, content?: string, iconURL?: string) — Tool to update or create a tile within a Slite note with structured header and markdown content. Use when you need to update tile information including title, status, content, icon, or external URL. - slite_verify_note(until?: string, noteId: string) — Tool to set a note's verification status to Verified with optional expiration. Use when you need to mark a note as verified or update its verification expiration date. ## Example prompts - "What can I do in Slite?" - "Show me a summary of my Slite account" ## Links Docs: https://mcp.ai/docs/mcps/slite Website: https://mcp.ai/mcps/slite