Microsoft Windows 10 · Capability

Microsoft Windows 10 Win32 API — Functions

Microsoft Windows 10 Win32 API — Functions. 2 operations. Lead operation: Microsoft Windows 10 List functions in a category. Self-contained Naftiko capability covering one Microsoft Windows 10 business surface.

Run with Naftiko Microsoft Windows 10Functions

What You Can Do

GET
Listcategoryfunctions — Microsoft Windows 10 List functions in a category
/v1/win32/api-categories/{categoryid}/functions
GET
Getwin32functiondetails — Microsoft Windows 10 Get Win32 function details
/v1/win32/functions/{functionname}

MCP Tools

microsoft-windows-10-list-functions

Microsoft Windows 10 List functions in a category

read-only idempotent
microsoft-windows-10-get-win32

Microsoft Windows 10 Get Win32 function details

read-only idempotent

Capability Spec

win32-functions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Microsoft Windows 10 Win32 API — Functions
  description: 'Microsoft Windows 10 Win32 API — Functions. 2 operations. Lead operation: Microsoft Windows 10 List functions
    in a category. Self-contained Naftiko capability covering one Microsoft Windows 10 business surface.'
  tags:
  - Microsoft Windows 10
  - Functions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MICROSOFT_WINDOWS_10_API_KEY: MICROSOFT_WINDOWS_10_API_KEY
capability:
  consumes:
  - type: http
    namespace: win32-functions
    baseUri: https://api.windows.com
    description: Microsoft Windows 10 Win32 API — Functions business capability. Self-contained, no shared references.
    resources:
    - name: win32-api-categories-categoryId-functions
      path: /win32/api-categories/{categoryId}/functions
      operations:
      - name: listcategoryfunctions
        method: GET
        description: Microsoft Windows 10 List functions in a category
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: categoryId
          in: path
          type: string
          description: The API category identifier
          required: true
        - name: dll
          in: query
          type: string
          description: Filter by DLL name (e.g., kernel32.dll, user32.dll)
    - name: win32-functions-functionName
      path: /win32/functions/{functionName}
      operations:
      - name: getwin32functiondetails
        method: GET
        description: Microsoft Windows 10 Get Win32 function details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: functionName
          in: path
          type: string
          description: The function name (e.g., CreateWindowExW, SendMessage)
          required: true
  exposes:
  - type: rest
    namespace: win32-functions-rest
    port: 8080
    description: REST adapter for Microsoft Windows 10 Win32 API — Functions. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/win32/api-categories/{categoryid}/functions
      name: win32-api-categories-categoryid-functions
      description: REST surface for win32-api-categories-categoryId-functions.
      operations:
      - method: GET
        name: listcategoryfunctions
        description: Microsoft Windows 10 List functions in a category
        call: win32-functions.listcategoryfunctions
        with:
          categoryId: rest.categoryId
          dll: rest.dll
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/win32/functions/{functionname}
      name: win32-functions-functionname
      description: REST surface for win32-functions-functionName.
      operations:
      - method: GET
        name: getwin32functiondetails
        description: Microsoft Windows 10 Get Win32 function details
        call: win32-functions.getwin32functiondetails
        with:
          functionName: rest.functionName
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: win32-functions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Microsoft Windows 10 Win32 API — Functions. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: microsoft-windows-10-list-functions
      description: Microsoft Windows 10 List functions in a category
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: win32-functions.listcategoryfunctions
      with:
        categoryId: tools.categoryId
        dll: tools.dll
      outputParameters:
      - type: object
        mapping: $.
    - name: microsoft-windows-10-get-win32
      description: Microsoft Windows 10 Get Win32 function details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: win32-functions.getwin32functiondetails
      with:
        functionName: tools.functionName
      outputParameters:
      - type: object
        mapping: $.