Skip to main content
Your profile is the central record for your account — it holds your name, email, plan, credit usage, and the configuration that controls how the ManticScore AI agent behaves on your behalf.

Read your profile

The profile is auto-created on first access — you don’t need to call a separate registration endpoint.

Update name or email

Pass null for either field to leave it unchanged. The response has the same shape as GET /profile.

Configure agent autonomy

The agent autonomy setting controls how much the ManticScore AI acts on your behalf without stopping to ask for confirmation.
Response: the full updated agent_config object.
You can allow specific actions to run automatically even when autonomy_level is suggest or confirm. Pass an array of action strings:
  • slack.post
  • notion.export
  • linear.create_issues
  • jira.create_issues
  • gmail.send
  • github.create_pr
Linking your phone number enables App Clip delivery over iMessage. When you link a number, ManticScore sends you a welcome App Clip to confirm the connection.
The API accepts US 10-digit, 11-digit, or E.164 format and normalizes to E.164 in the response.
verified: true means the welcome iMessage was successfully enqueued. Delivery typically takes 1–3 seconds when the system is idle. Error responses:
Each iMessage ManticScore sends contains exactly one App Clip URL. ManticScore does not send arbitrary text.

Manage MCP bearer tokens

If you connect to the MCP server from Claude Code, Claude Desktop, or any other agent that speaks the MCP HTTP transport, you authenticate with a per-user bearer token minted from your profile. Each token has the form mcp_<48 url-safe chars>. The plaintext is returned exactly once at creation; only the SHA-256 hash is stored server-side. If you lose a token, revoke it and mint a new one.

Create a token

string
Optional human-readable label to help you remember where the token is used (e.g. Claude Code on laptop, agent-server). Stored but not validated.
string
UUID of the token row. Use this with DELETE /profile/mcp/tokens/{token_id} to revoke.
string | null
Label as supplied at creation, if any.
string
The plaintext bearer token. Returned exactly once — store it immediately. ManticScore cannot recover it.
string
Insert timestamp as an ISO 8601 string in UTC.

List active tokens

Returns only tokens where revoked_at IS NULL, newest-first. Hashes and plaintext tokens are never returned — only metadata.
string
UUID of the token row.
string | null
Label as supplied at creation, if any.
string | null
Last time the token was used to authenticate an MCP request, as an ISO 8601 string in UTC. null if the token has never been used.
string
Insert timestamp as an ISO 8601 string in UTC.

Revoke a token

Idempotent — already-revoked tokens return ok. Returns 404 if the token doesn’t exist or belongs to another account.
Revocation takes effect immediately for new requests. Any in-flight MCP request that already passed the bearer check will continue to completion.

Bootstrap call

On app launch, you can hydrate your entire initial state with a single request instead of calling /profile, /secrets, and your subscription endpoint separately.
This is the recommended first call after authentication. It also triggers the daily credit reset for free-tier accounts if more than 24 hours have elapsed since the last reset.