Microsoft Power Apps · Capability

Microsoft Power Apps Microsoft Dataverse Web API — Entities

Microsoft Power Apps Microsoft Dataverse Web API — Entities. 2 operations. Lead operation: Microsoft Power Apps Retrieve Entity Definitions. Self-contained Naftiko capability covering one Microsoft Power Apps business surface.

Run with Naftiko Microsoft Power AppsEntities

What You Can Do

GET
Getentities — Microsoft Power Apps Retrieve Entity Definitions
/v1/entities
GET
Getentity — Microsoft Power Apps Retrieve a Single Entity Definition
/v1/entities-entityid

MCP Tools

microsoft-power-apps-retrieve-entity

Microsoft Power Apps Retrieve Entity Definitions

read-only idempotent
microsoft-power-apps-retrieve-single

Microsoft Power Apps Retrieve a Single Entity Definition

read-only idempotent

Capability Spec

dataverse-web-entities.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Power Apps Microsoft Dataverse Web API — Entities
  description: 'Microsoft Power Apps Microsoft Dataverse Web API — Entities. 2 operations. Lead operation: Microsoft Power
    Apps Retrieve Entity Definitions. Self-contained Naftiko capability covering one Microsoft Power Apps business surface.'
  tags:
  - Microsoft Power Apps
  - Entities
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_POWER_APPS_API_KEY: MICROSOFT_POWER_APPS_API_KEY
capability:
  consumes:
  - type: http
    namespace: dataverse-web-entities
    baseUri: https://{organization}.api.crm.dynamics.com/api/data/v9.2
    description: Microsoft Power Apps Microsoft Dataverse Web API — Entities business capability. Self-contained, no shared
      references.
    resources:
    - name: entities
      path: /entities
      operations:
      - name: getentities
        method: GET
        description: Microsoft Power Apps Retrieve Entity Definitions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: entities({entityid})
      path: /entities({entityid})
      operations:
      - name: getentity
        method: GET
        description: Microsoft Power Apps Retrieve a Single Entity Definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: entityid
          in: path
          type: string
          description: Unique identifier (GUID) of the entity definition.
          required: true
    authentication:
      type: bearer
      token: '{{env.MICROSOFT_POWER_APPS_API_KEY}}'
  exposes:
  - type: rest
    namespace: dataverse-web-entities-rest
    port: 8080
    description: REST adapter for Microsoft Power Apps Microsoft Dataverse Web API — Entities. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/entities
      name: entities
      description: REST surface for entities.
      operations:
      - method: GET
        name: getentities
        description: Microsoft Power Apps Retrieve Entity Definitions
        call: dataverse-web-entities.getentities
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/entities-entityid
      name: entities-entityid
      description: REST surface for entities({entityid}).
      operations:
      - method: GET
        name: getentity
        description: Microsoft Power Apps Retrieve a Single Entity Definition
        call: dataverse-web-entities.getentity
        with:
          entityid: rest.entityid
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: dataverse-web-entities-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Power Apps Microsoft Dataverse Web API — Entities. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: microsoft-power-apps-retrieve-entity
      description: Microsoft Power Apps Retrieve Entity Definitions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: dataverse-web-entities.getentities
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-power-apps-retrieve-single
      description: Microsoft Power Apps Retrieve a Single Entity Definition
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: dataverse-web-entities.getentity
      with:
        entityid: tools.entityid
      outputParameters:
      - type: object
        mapping: $.