MCPBundler Docs
MCPBundler Docs
Back to marketplaceGetting StartedAuthenticationTutorial - Bundle to Connected Agent
API Reference
Auth
Bundler
Bundles
Catalog
Deployments
Discover
LLM
MCP Listing Claims
MCP Listings
OAuth2
Observability
Organisations
Reviews
Roadmap
SCIM
Users
Get the authenticated user's own profileGet a user's public profile
Utils
Vault
Webhooks
API ReferenceUsers

Get the authenticated user's own profile

GET
/v1/users/me

Returns the caller's own marketplace profile, including flags (is_admin, is_publisher) that are never exposed on the public profile lookup below. Registered ahead of /{user_id} so 'me' is never matched as a user id.

Authorization

OAuth2AuthorizationCodeBearer
AuthorizationBearer <token>

In: header

Query Parameters

verify_locally?Verify Locally
Defaulttrue

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/users/me"
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "username": "string",  "email": "string",  "display_name": "string",  "is_admin": false,  "is_publisher": false}
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string"    }  ]}

Users

Endpoints in the Users group.

Get a user's public profile

Next Page