MongoDB · Capability

MongoDB Atlas Administration API — Root

MongoDB Atlas Administration API — Root. 2 operations. Lead operation: Return the Status of This MongoDB Application. Self-contained Naftiko capability covering one Mongodb business surface.

Run with Naftiko MongodbRoot

What You Can Do

GET
Getsystemstatus — Return the Status of This MongoDB Application
/v1/api/atlas/v2
GET
Listcontrolplaneipaddresses — Return All Control Plane IP Addresses
/v1/api/atlas/v2/unauth/controlplaneipaddresses

MCP Tools

return-status-this-mongodb-application

Return the Status of This MongoDB Application

read-only idempotent
return-all-control-plane-ip

Return All Control Plane IP Addresses

read-only idempotent

Capability Spec

atlas-root.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: MongoDB Atlas Administration API — Root
  description: 'MongoDB Atlas Administration API — Root. 2 operations. Lead operation: Return the Status of This MongoDB Application.
    Self-contained Naftiko capability covering one Mongodb business surface.'
  tags:
  - Mongodb
  - Root
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MONGODB_API_KEY: MONGODB_API_KEY
capability:
  consumes:
  - type: http
    namespace: atlas-root
    baseUri: https://cloud.mongodb.com
    description: MongoDB Atlas Administration API — Root business capability. Self-contained, no shared references.
    resources:
    - name: api-atlas-v2
      path: /api/atlas/v2
      operations:
      - name: getsystemstatus
        method: GET
        description: Return the Status of This MongoDB Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: api-atlas-v2-unauth-controlPlaneIPAddresses
      path: /api/atlas/v2/unauth/controlPlaneIPAddresses
      operations:
      - name: listcontrolplaneipaddresses
        method: GET
        description: Return All Control Plane IP Addresses
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.MONGODB_API_KEY}}'
  exposes:
  - type: rest
    namespace: atlas-root-rest
    port: 8080
    description: REST adapter for MongoDB Atlas Administration API — Root. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/atlas/v2
      name: api-atlas-v2
      description: REST surface for api-atlas-v2.
      operations:
      - method: GET
        name: getsystemstatus
        description: Return the Status of This MongoDB Application
        call: atlas-root.getsystemstatus
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/atlas/v2/unauth/controlplaneipaddresses
      name: api-atlas-v2-unauth-controlplaneipaddresses
      description: REST surface for api-atlas-v2-unauth-controlPlaneIPAddresses.
      operations:
      - method: GET
        name: listcontrolplaneipaddresses
        description: Return All Control Plane IP Addresses
        call: atlas-root.listcontrolplaneipaddresses
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: atlas-root-mcp
    port: 9090
    transport: http
    description: MCP adapter for MongoDB Atlas Administration API — Root. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: return-status-this-mongodb-application
      description: Return the Status of This MongoDB Application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: atlas-root.getsystemstatus
      outputParameters:
      - type: object
        mapping: $.
    - name: return-all-control-plane-ip
      description: Return All Control Plane IP Addresses
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: atlas-root.listcontrolplaneipaddresses
      outputParameters:
      - type: object
        mapping: $.