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

# Check Memory Connection

> Probe the configured memory backend.

Returns 404 if no memory row exists; otherwise calls the probe
against the stored config. The probe never raises — failures land
in the response body as ``ok=False``.



## OpenAPI

````yaml /standalone/openapi.json post /admin/api/v1/memory/check-connection
openapi: 3.1.0
info:
  title: Idun Agent Engine Server
  description: A production-ready server for conversational AI agents
  version: 0.6.1
servers: []
security: []
tags:
  - name: Runtime
    description: >-
      Public agent run endpoints, engine operations, and chat-channel webhooks.
      SSE streaming via the AG-UI protocol.
  - name: Agent Configuration
    description: >-
      Singleton admin endpoints for the agent, prompts, memory, guardrails, and
      onboarding wizard.
  - name: Auth & SSO
    description: >-
      Login, sessions, password change, SSO config, and the public SSO discovery
      endpoint.
  - name: Integrations & Tools
    description: MCP server registry and external integration credentials.
  - name: Observability
    description: Tracing/logging provider configuration.
  - name: Traces
    description: >-
      Trace and span storage admin endpoints — list, detail, delete, and
      pipeline-health for the standalone trace store.
  - name: Dashboard
    description: >-
      Operator dashboard widgets — KPIs, time-series, top errors, and
      configuration summary.
paths:
  /admin/api/v1/memory/check-connection:
    post:
      tags:
        - Agent Configuration
      summary: Check Memory Connection
      description: |-
        Probe the configured memory backend.

        Returns 404 if no memory row exists; otherwise calls the probe
        against the stored config. The probe never raises — failures land
        in the response body as ``ok=False``.
      operationId: check_memory_connection_admin_api_v1_memory_check_connection_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StandaloneConnectionCheck'
components:
  schemas:
    StandaloneConnectionCheck:
      properties:
        ok:
          type: boolean
          title: Ok
        details:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Details
        error:
          anyOf:
            - type: string
            - type: 'null'
          title: Error
      type: object
      required:
        - ok
      title: StandaloneConnectionCheck
      description: |-
        Body of POST /admin/api/v1/<resource>/check-connection.

        ``ok = True`` means the provider responded as expected. ``details``
        carries provider-specific information (e.g. tool list for an MCP
        server). ``error`` is set only when ``ok = False``.

````