# Mural (verified)

Mural is a digital whiteboard platform enabling distributed teams to visually brainstorm, map ideas, and collaborate in real time with sticky notes and diagrams

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add mural

# Browse available tools
npx -y @smithery/cli@latest tool list mural

# Get full schema for a tool
npx -y @smithery/cli@latest tool get mural MURAL_AUTHORIZATION_REQUEST

# Call a tool
npx -y @smithery/cli@latest tool call mural MURAL_AUTHORIZATION_REQUEST '{}'
```

## Direct MCP Connection

Endpoint: `https://mural.run.tools`

## Tools (5)

- `MURAL_AUTHORIZATION_REQUEST` — Tool to initiate the OAuth 2.0 authorization process. Use when you need to redirect a user to Mural to obtain an author…
- `MURAL_CREATE_STICKY_NOTE` — 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 authe…
- `MURAL_GET_FILES_FOR_MURAL` — 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` — Tool to retrieve all widgets within a specified mural. Use after confirming the mural ID is correct.

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get mural <tool-name>
```
