Composio · Capability

Composio Platform API — Configuration

Composio Platform API — Configuration. 2 operations. Lead operation: Get project configuration. Self-contained Naftiko capability covering one Composio business surface.

Run with Naftiko ComposioConfiguration

What You Can Do

GET
Getorgprojectconfig — Get project configuration
/v1/api/v3/org/project/config
PATCH
Patchorgprojectconfig — Update project configuration
/v1/api/v3/org/project/config

MCP Tools

get-project-configuration

Get project configuration

read-only idempotent
update-project-configuration

Update project configuration

idempotent

Capability Spec

composio-configuration.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Composio Platform API — Configuration
  description: 'Composio Platform API — Configuration. 2 operations. Lead operation: Get project configuration. Self-contained
    Naftiko capability covering one Composio business surface.'
  tags:
  - Composio
  - Configuration
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    COMPOSIO_API_KEY: COMPOSIO_API_KEY
capability:
  consumes:
  - type: http
    namespace: composio-configuration
    baseUri: https://backend.composio.dev
    description: Composio Platform API — Configuration business capability. Self-contained, no shared references.
    resources:
    - name: api-v3-org-project-config
      path: /api/v3/org/project/config
      operations:
      - name: getorgprojectconfig
        method: GET
        description: Get project configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: patchorgprojectconfig
        method: PATCH
        description: Update project configuration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.COMPOSIO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: composio-configuration-rest
    port: 8080
    description: REST adapter for Composio Platform API — Configuration. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v3/org/project/config
      name: api-v3-org-project-config
      description: REST surface for api-v3-org-project-config.
      operations:
      - method: GET
        name: getorgprojectconfig
        description: Get project configuration
        call: composio-configuration.getorgprojectconfig
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchorgprojectconfig
        description: Update project configuration
        call: composio-configuration.patchorgprojectconfig
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: composio-configuration-mcp
    port: 9090
    transport: http
    description: MCP adapter for Composio Platform API — Configuration. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: get-project-configuration
      description: Get project configuration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: composio-configuration.getorgprojectconfig
      outputParameters:
      - type: object
        mapping: $.
    - name: update-project-configuration
      description: Update project configuration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: composio-configuration.patchorgprojectconfig
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.