Composio · Capability

Composio Platform API — Organization Management

Composio Platform API — Organization Management. 6 operations. Lead operation: List active connected toolkits for a consumer user. Self-contained Naftiko capability covering one Composio business surface.

Run with Naftiko ComposioOrganization Management

What You Can Do

GET
Getorgconsumerconnectedtoolkits — List active connected toolkits for a consumer user
/v1/api/v3/org/consumer/connected-toolkits
POST
Postorgconsumerprojectresolve — Resolve the organization consumer project
/v1/api/v3/org/consumer/project/resolve
GET
Getorgownerprojectlist — List all projects
/v1/api/v3/org/owner/project/list
GET
Getorgownerprojectbynanoid — Get project details by ID With Org Api key
/v1/api/v3/org/owner/project/{nano-id}
DELETE
Deleteorgownerprojectbynanoid — Delete a project
/v1/api/v3/org/owner/project/{nano-id}
POST
Postorgownerprojectbynanoidregenerateapikey — Delete and generate new API key for project
/v1/api/v3/org/owner/project/{nano-id}/regenerate-api-key

MCP Tools

list-active-connected-toolkits-consumer

List active connected toolkits for a consumer user

read-only idempotent
resolve-organization-consumer-project

Resolve the organization consumer project

list-all-projects

List all projects

read-only idempotent
get-project-details-id-org

Get project details by ID With Org Api key

read-only idempotent
delete-project

Delete a project

idempotent
delete-and-generate-new-api

Delete and generate new API key for project

Capability Spec

composio-organization-management.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Composio Platform API — Organization Management
  description: 'Composio Platform API — Organization Management. 6 operations. Lead operation: List active connected toolkits
    for a consumer user. Self-contained Naftiko capability covering one Composio business surface.'
  tags:
  - Composio
  - Organization Management
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    COMPOSIO_API_KEY: COMPOSIO_API_KEY
capability:
  consumes:
  - type: http
    namespace: composio-organization-management
    baseUri: https://backend.composio.dev
    description: Composio Platform API — Organization Management business capability. Self-contained, no shared references.
    resources:
    - name: api-v3-org-consumer-connected_toolkits
      path: /api/v3/org/consumer/connected_toolkits
      operations:
      - name: getorgconsumerconnectedtoolkits
        method: GET
        description: List active connected toolkits for a consumer user
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: user_id
          in: query
          type: string
          description: Consumer user ID to inspect within the consumer project.
          required: true
        - name: x-user-api-key
          in: header
          type: string
          required: true
        - name: x-org-id
          in: header
          type: string
          description: Organization nano ID that owns the consumer project.
          required: true
    - name: api-v3-org-consumer-project-resolve
      path: /api/v3/org/consumer/project/resolve
      operations:
      - name: postorgconsumerprojectresolve
        method: POST
        description: Resolve the organization consumer project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: x-user-api-key
          in: header
          type: string
          required: true
        - name: x-org-id
          in: header
          type: string
          required: true
    - name: api-v3-org-owner-project-list
      path: /api/v3/org/owner/project/list
      operations:
      - name: getorgownerprojectlist
        method: GET
        description: List all projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: number
          description: Number of items per page, max allowed is 1000
        - name: cursor
          in: query
          type: string
          description: Cursor for pagination. The cursor is a base64 encoded string of the page and limit. The page is the
            page number and the limit is the number of items per page. T
    - name: api-v3-org-owner-project-nano_id
      path: /api/v3/org/owner/project/{nano_id}
      operations:
      - name: getorgownerprojectbynanoid
        method: GET
        description: Get project details by ID With Org Api key
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: nano_id
          in: path
          type: string
          description: Unique identifier (Nano ID) of the project to retrieve
          required: true
      - name: deleteorgownerprojectbynanoid
        method: DELETE
        description: Delete a project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: nano_id
          in: path
          type: string
          description: Unique identifier (Nano ID) of the project to delete
          required: true
    - name: api-v3-org-owner-project-nano_id-regenerate_api_key
      path: /api/v3/org/owner/project/{nano_id}/regenerate_api_key
      operations:
      - name: postorgownerprojectbynanoidregenerateapikey
        method: POST
        description: Delete and generate new API key for project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: nano_id
          in: path
          type: string
          description: Unique identifier (Nano ID) of the project to regenerate API key for
          required: true
    authentication:
      type: apikey
      key: x-api-key
      value: '{{env.COMPOSIO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: composio-organization-management-rest
    port: 8080
    description: REST adapter for Composio Platform API — Organization Management. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/v3/org/consumer/connected-toolkits
      name: api-v3-org-consumer-connected-toolkits
      description: REST surface for api-v3-org-consumer-connected_toolkits.
      operations:
      - method: GET
        name: getorgconsumerconnectedtoolkits
        description: List active connected toolkits for a consumer user
        call: composio-organization-management.getorgconsumerconnectedtoolkits
        with:
          user_id: rest.user_id
          x-user-api-key: rest.x-user-api-key
          x-org-id: rest.x-org-id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v3/org/consumer/project/resolve
      name: api-v3-org-consumer-project-resolve
      description: REST surface for api-v3-org-consumer-project-resolve.
      operations:
      - method: POST
        name: postorgconsumerprojectresolve
        description: Resolve the organization consumer project
        call: composio-organization-management.postorgconsumerprojectresolve
        with:
          x-user-api-key: rest.x-user-api-key
          x-org-id: rest.x-org-id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v3/org/owner/project/list
      name: api-v3-org-owner-project-list
      description: REST surface for api-v3-org-owner-project-list.
      operations:
      - method: GET
        name: getorgownerprojectlist
        description: List all projects
        call: composio-organization-management.getorgownerprojectlist
        with:
          limit: rest.limit
          cursor: rest.cursor
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v3/org/owner/project/{nano-id}
      name: api-v3-org-owner-project-nano-id
      description: REST surface for api-v3-org-owner-project-nano_id.
      operations:
      - method: GET
        name: getorgownerprojectbynanoid
        description: Get project details by ID With Org Api key
        call: composio-organization-management.getorgownerprojectbynanoid
        with:
          nano_id: rest.nano_id
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteorgownerprojectbynanoid
        description: Delete a project
        call: composio-organization-management.deleteorgownerprojectbynanoid
        with:
          nano_id: rest.nano_id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v3/org/owner/project/{nano-id}/regenerate-api-key
      name: api-v3-org-owner-project-nano-id-regenerate-api-key
      description: REST surface for api-v3-org-owner-project-nano_id-regenerate_api_key.
      operations:
      - method: POST
        name: postorgownerprojectbynanoidregenerateapikey
        description: Delete and generate new API key for project
        call: composio-organization-management.postorgownerprojectbynanoidregenerateapikey
        with:
          nano_id: rest.nano_id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: composio-organization-management-mcp
    port: 9090
    transport: http
    description: MCP adapter for Composio Platform API — Organization Management. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-active-connected-toolkits-consumer
      description: List active connected toolkits for a consumer user
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: composio-organization-management.getorgconsumerconnectedtoolkits
      with:
        user_id: tools.user_id
        x-user-api-key: tools.x-user-api-key
        x-org-id: tools.x-org-id
      outputParameters:
      - type: object
        mapping: $.
    - name: resolve-organization-consumer-project
      description: Resolve the organization consumer project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: composio-organization-management.postorgconsumerprojectresolve
      with:
        x-user-api-key: tools.x-user-api-key
        x-org-id: tools.x-org-id
      outputParameters:
      - type: object
        mapping: $.
    - name: list-all-projects
      description: List all projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: composio-organization-management.getorgownerprojectlist
      with:
        limit: tools.limit
        cursor: tools.cursor
      outputParameters:
      - type: object
        mapping: $.
    - name: get-project-details-id-org
      description: Get project details by ID With Org Api key
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: composio-organization-management.getorgownerprojectbynanoid
      with:
        nano_id: tools.nano_id
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-project
      description: Delete a project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: composio-organization-management.deleteorgownerprojectbynanoid
      with:
        nano_id: tools.nano_id
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-and-generate-new-api
      description: Delete and generate new API key for project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: composio-organization-management.postorgownerprojectbynanoidregenerateapikey
      with:
        nano_id: tools.nano_id
      outputParameters:
      - type: object
        mapping: $.