We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/n24q02m/better-notion-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# Users Tool - Full Documentation
## Overview
User info: list, get, me, from_workspace.
## Important
- `list` and `get` require **Enterprise plan** or explicit `read_user` capability granted by workspace admin. Most integrations will get "Integration does not have ability to..." error.
- Use `me` to get the bot's own info (always works).
- Use `from_workspace` as a reliable fallback — extracts users from created_by/last_edited_by metadata in accessible pages (no special permissions needed).
## Actions
### me
```json
{"action": "me"}
```
Returns bot/integration info.
### list
```json
{"action": "list"}
```
Requires user:read permission.
### get
```json
{"action": "get", "user_id": "xxx"}
```
### from_workspace
```json
{"action": "from_workspace"}
```
Extracts users from created_by/last_edited_by in accessible pages.
## Parameters
- `user_id` - User ID (for get action)