wp_get_user_meta tool reference for StifLi Flex MCP
Sensitive readgets user metadata by `user_id` and optional `meta_key`.
Description
gets user metadata by `user_id` and optional `meta_key`.
What it is for
- Diagnosing profile data.
- Reviewing integrations that store preferences or permissions in user meta.
Example use case
diagnosing a profile issue.
Sample prompt
Get the user meta for user ID 14 so I can inspect the profile-related fields that might be causing a login preference issue.
Sample response
{
"tool": "wp_get_user_meta",
"status": "ok",
"items": []
}
What does wp_get_user_meta do?
gets user metadata by `user_id` and optional `meta_key`.
Does wp_get_user_meta modify site data?
It does not modify data, but it can expose sensitive site, user, or configuration details.
Which capability is commonly required?
It usually runs under controls compatible with edit_users and the active MCP profile.
How should wp_get_user_meta be used safely?
Restrict this tool by profile and avoid exposing full raw output in shared channels.
