list-members
Retrieve all team members from your Shortcut workspace to manage project assignments and track contributor information.
Instructions
Get all members
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"type": "object"
}
Implementation Reference
- src/tools/user.ts:28-32 (handler)The handler function for the 'list-members' tool. It retrieves members using the client and formats the result.async listMembers() { const members = await this.client.listMembers(); return this.toResult(`Found ${members.length} members:`, members); }
- src/tools/user.ts:15-15 (registration)Registers the 'list-members' tool with the MCP server, delegating to the listMembers method on the UserTools instance.server.tool("list-members", "Get all members", async () => await tools.listMembers());