Skip to content
Download Beeper

Get Connect server info

$client->info->retrieve(): InfoGetResponse
GET/v1/info

Returns app, platform, server, and endpoint discovery metadata for this Beeper Desktop instance.

ReturnsExpand Collapse
App app
Endpoints endpoints
Platform platform
Server server

Get Connect server info

<?php

require_once dirname(__DIR__) . '/vendor/autoload.php';

$client = new Client(accessToken: 'My Access Token');

$info = $client->info->retrieve();

var_dump($info);
{
  "app": {
    "bundle_id": "bundle_id",
    "name": "name",
    "version": "version"
  },
  "endpoints": {
    "mcp": "mcp",
    "oauth": {
      "authorization_endpoint": "authorization_endpoint",
      "introspection_endpoint": "introspection_endpoint",
      "registration_endpoint": "registration_endpoint",
      "revocation_endpoint": "revocation_endpoint",
      "token_endpoint": "token_endpoint",
      "userinfo_endpoint": "userinfo_endpoint"
    },
    "spec": "spec",
    "ws_events": "ws_events"
  },
  "platform": {
    "arch": "arch",
    "os": "os",
    "release": "release"
  },
  "server": {
    "base_url": "base_url",
    "hostname": "hostname",
    "mcp_enabled": true,
    "port": 0,
    "remote_access": true,
    "status": "status"
  }
}
Returns Examples
{
  "app": {
    "bundle_id": "bundle_id",
    "name": "name",
    "version": "version"
  },
  "endpoints": {
    "mcp": "mcp",
    "oauth": {
      "authorization_endpoint": "authorization_endpoint",
      "introspection_endpoint": "introspection_endpoint",
      "registration_endpoint": "registration_endpoint",
      "revocation_endpoint": "revocation_endpoint",
      "token_endpoint": "token_endpoint",
      "userinfo_endpoint": "userinfo_endpoint"
    },
    "spec": "spec",
    "ws_events": "ws_events"
  },
  "platform": {
    "arch": "arch",
    "os": "os",
    "release": "release"
  },
  "server": {
    "base_url": "base_url",
    "hostname": "hostname",
    "mcp_enabled": true,
    "port": 0,
    "remote_access": true,
    "status": "status"
  }
}