## Retrieve **get** `/v1/info` Returns app, platform, server, and endpoint discovery metadata for this Beeper Desktop instance. ### Returns - `app: object { bundle_id, name, version }` - `bundle_id: string` App bundle identifier - `name: string` App name - `version: string` App version - `endpoints: object { mcp, oauth, spec, ws_events }` - `mcp: string` MCP endpoint - `oauth: object { authorization_endpoint, introspection_endpoint, registration_endpoint, 3 more }` - `authorization_endpoint: string` OAuth authorization endpoint - `introspection_endpoint: string` OAuth introspection endpoint - `registration_endpoint: string` OAuth dynamic client registration endpoint - `revocation_endpoint: string` OAuth token revocation endpoint - `token_endpoint: string` OAuth token endpoint - `userinfo_endpoint: string` OAuth userinfo endpoint - `spec: string` OpenAPI spec endpoint - `ws_events: string` WebSocket events endpoint - `platform: object { arch, os, release }` - `arch: string` CPU architecture - `os: string` Operating system identifier - `release: optional string` Runtime release version - `server: object { base_url, hostname, mcp_enabled, 3 more }` - `base_url: string` Base URL of the Connect server - `hostname: string` Listening host - `mcp_enabled: boolean` Whether MCP endpoint is enabled - `port: number` Listening port - `remote_access: boolean` Whether remote access is enabled - `status: string` Server status ### Example ```http curl http://localhost:23373/v1/info \ -H "Authorization: Bearer $BEEPER_ACCESS_TOKEN" ```