# Mural — MCP server on mcp.ai > Mural is a digital whiteboard platform enabling distributed teams to visually brainstorm, map ideas, and collaborate in real time with sticky notes and diagrams By: mcp.ai · official Page: https://mcp.ai/mural ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_mural?ms=1781542320000 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/mural/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/mural/ 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/mural/skill.md Postman collection (v2.1): https://mcp.ai/mural/postman.json ## Tools - mural_create_sticky_note(muralId: string, stickies: object[]) — Tool to create one or more sticky note widgets on a mural. use when you need to add notes to a mural layout. - mural_get_current_user() — Tool to retrieve information about the currently authenticated user. use when you need current user details after authentication. - mural_get_files_for_mural(next?: string, limit?: integer, muralId: string) — Tool to retrieve a list of file widgets in a mural. use after confirming the mural id when listing file attachments. - mural_get_mural_widgets(next?: string, type?: string[], limit?: integer, muralId: string, parentId?: string) — Tool to retrieve all widgets within a specified mural. use after confirming the mural id is correct. - mural_mural_authorization_request(scope: string[], state?: string, client_id: string, redirect_uri: string, response_type?: string) — Tool to initiate the oauth 2.0 authorization process. use when you need to redirect a user to mural to obtain an authorization code. ## Links Docs: https://mcp.ai/docs/mcps/mural Website: https://mcp.ai/mcps/mural