> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getmcpulse.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Update Profile

> Both fields are optional and an omitted one is left alone — the theme menu sends only a theme, the settings form only a name.

`full_name` is nullable because sending `null` clears the name, which is a different instruction from omitting the field. `theme` is not, because there is no such thing as no theme: `system` means follow the operating system, and it is the default.



## OpenAPI

````yaml https://api.getmcpulse.com/docs/openapi.json patch /v1/account/profile
openapi: 3.1.0
info:
  title: MCPulse API
  version: 1.0.0
  description: >-
    Analytics for MCP servers.


    The API is the product — the dashboard is one client and an MCP server will
    be another. Every number here is computed server-side so that both get the
    same answer.


    **Two kinds of auth.** Ingest uses an MCP API key (`mp_live_…`). Everything
    else uses a Supabase access token from the browser session.
servers:
  - url: https://mcpulse-production.up.railway.app
    description: MCPulse API
security: []
tags:
  - name: ingest
    description: What the customer's server sends
  - name: mcps
    description: MCPs and ownership
  - name: metrics
    description: Everything the dashboard reads
  - name: keys
    description: Ingest API keys
  - name: account
    description: Account, team and usage
paths:
  /v1/account/profile:
    patch:
      tags:
        - account
      summary: Update Profile
      description: >-
        Both fields are optional and an omitted one is left alone — the theme
        menu sends only a theme, the settings form only a name.


        `full_name` is nullable because sending `null` clears the name, which is
        a different instruction from omitting the field. `theme` is not, because
        there is no such thing as no theme: `system` means follow the operating
        system, and it is the default.
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                full_name:
                  type: string
                  nullable: true
                  maxLength: 120
                theme:
                  type: string
                  enum:
                    - system
                    - light
                    - dark
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                nullable: true
        '401':
          description: Invalid or missing token
        '403':
          description: Your role does not permit this

````