Appsmith · Capability

Appsmith API — Applications

Appsmith API — Applications. 3 operations. Lead operation: Appsmith - List Applications. Self-contained Naftiko capability covering one Appsmith business surface.

Run with Naftiko AppsmithApplications

What You Can Do

GET
Listapplications — Appsmith - List Applications
/v1/applications
POST
Createapplication — Appsmith - Create Application
/v1/applications
GET
Getapplication — Appsmith - Get Application
/v1/applications/{applicationid}

MCP Tools

appsmith-list-applications

Appsmith - List Applications

read-only idempotent
appsmith-create-application

Appsmith - Create Application

appsmith-get-application

Appsmith - Get Application

read-only idempotent

Capability Spec

appsmith-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Appsmith API — Applications
  description: 'Appsmith API — Applications. 3 operations. Lead operation: Appsmith - List Applications. Self-contained Naftiko
    capability covering one Appsmith business surface.'
  tags:
  - Appsmith
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APPSMITH_API_KEY: APPSMITH_API_KEY
capability:
  consumes:
  - type: http
    namespace: appsmith-applications
    baseUri: https://app.appsmith.com/api/v1
    description: Appsmith API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: applications
      path: /applications
      operations:
      - name: listapplications
        method: GET
        description: Appsmith - List Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: workspaceId
          in: query
          type: string
          description: Filter by workspace identifier
      - name: createapplication
        method: POST
        description: Appsmith - Create Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: applications-applicationId
      path: /applications/{applicationId}
      operations:
      - name: getapplication
        method: GET
        description: Appsmith - Get Application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: applicationId
          in: path
          type: string
          description: Unique application identifier
          required: true
    authentication:
      type: bearer
      token: '{{env.APPSMITH_API_KEY}}'
  exposes:
  - type: rest
    namespace: appsmith-applications-rest
    port: 8080
    description: REST adapter for Appsmith API — Applications. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/applications
      name: applications
      description: REST surface for applications.
      operations:
      - method: GET
        name: listapplications
        description: Appsmith - List Applications
        call: appsmith-applications.listapplications
        with:
          workspaceId: rest.workspaceId
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createapplication
        description: Appsmith - Create Application
        call: appsmith-applications.createapplication
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applications/{applicationid}
      name: applications-applicationid
      description: REST surface for applications-applicationId.
      operations:
      - method: GET
        name: getapplication
        description: Appsmith - Get Application
        call: appsmith-applications.getapplication
        with:
          applicationId: rest.applicationId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: appsmith-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Appsmith API — Applications. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: appsmith-list-applications
      description: Appsmith - List Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: appsmith-applications.listapplications
      with:
        workspaceId: tools.workspaceId
      outputParameters:
      - type: object
        mapping: $.
    - name: appsmith-create-application
      description: Appsmith - Create Application
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: appsmith-applications.createapplication
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: appsmith-get-application
      description: Appsmith - Get Application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: appsmith-applications.getapplication
      with:
        applicationId: tools.applicationId
      outputParameters:
      - type: object
        mapping: $.