sally-mcp
v0.1.0
Published
MCP server for Sally
Maintainers
Readme
sally-mcp
MCP server for Sally.
sally-mcp lets MCP-compatible clients talk to a Sally instance over its normal web API using a personal user API key minted inside Sally.
Install
npm install -g sally-mcpRequired environment
SALLY_URL=https://your-sally-domain.com
SALLY_USER_API_KEY=your_personal_sally_api_keyThat is enough for the normal setup.
Access is defined entirely by the Sally user behind the API key.
Optional advanced restriction
If you want one MCP server to be pinned to a single workspace, you can also set:
SALLY_WORKSPACE_SLUG=your-workspace-slugThat is useful when different agents should be restricted to different workspaces.
No workspace id is needed. No global server key is needed.
Run locally
SALLY_URL=https://your-sally-domain.com \
SALLY_USER_API_KEY=your_personal_sally_api_key \
sally-mcpOpenClaw / generic stdio MCP config
{
"mcpServers": {
"sally": {
"command": "sally-mcp",
"env": {
"SALLY_URL": "https://your-sally-domain.com",
"SALLY_USER_API_KEY": "your_personal_sally_api_key"
}
}
}
}Claude Code style stdio config
{
"mcpServers": {
"sally": {
"command": "sally-mcp",
"env": {
"SALLY_URL": "https://your-sally-domain.com",
"SALLY_USER_API_KEY": "your_personal_sally_api_key"
}
}
}
}Workspace selection behavior
- Default: no workspace restriction in config.
- Optional advanced restriction: set
SALLY_WORKSPACE_SLUGto pin one MCP server to one workspace. - If no workspace slug is configured, access is determined entirely by the Sally user and the API key behind it.
Tool families
Workspace and account
workspace.listworkspace.members.listworkspace.members.addworkspace.members.updateworkspace.members.removeworkspace.inviteprofile.getprofile.updateprofile.image_uploadapi_keys.listapi_keys.createapi_keys.revoke
Notifications
notification.listnotification.readnotification.read_allnotification.preferences.getnotification.preferences.update
Clients and discovery
mentionable_users.listclient.listclient.createclient.getclient.updateclient.deleteproject.summaryboard.get
Projects
project.listproject.createproject.getproject.updateproject.archiveproject.deleteproject.members.listproject.members.addproject.members.updateproject.members.removeproject.activityproject.labels.createproject.statuses.createproject.statuses.updateproject.statuses.delete
Tasks, comments, labels, todos, uploads
task.listtask.gettask.createtask.updatetask.movetask.reordertask.archivetask.deletetask.commentscomment.addtask.labels.updatetask.todos.createtask.todos.updatetask.todos.deletetask.todos.reordertask.image_upload
Timesheets
timesheet.addtimesheet.updatetimesheet.deletetimesheet.project_listtimesheet.task_listtimesheet.userstimesheet.report
Notes
sally-mcpuses Sally's normal HTTP API as the source of truth.- It does not access the database directly.
- Each user should mint and use their own Sally API key.
- Permissions are inherited from the real Sally user behind that key.
- Owner-only operations remain owner-only. The MCP server does not bypass Sally permissions.
- Login, invite acceptance, password reset, and other email/token flows are intentionally not exposed as MCP tools because they are not practical authenticated agent actions with a minted user API key.
