Instabug (Luciq) · Capability

Luciq MCP Server — Applications

Luciq MCP Server — Applications. 1 operation. Lead operation: List Applications. Self-contained Naftiko capability covering the application enumeration surface of the Luciq MCP Server.

Luciq MCP Server — Applications is a Naftiko capability published by Instabug (Luciq), one of 6 capabilities the APIs.io network indexes for this provider. It bundles 1 operation across the GET method rooted at /v1/applications.

The capability includes 1 read-only operation. Lead operation: List Applications. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Luciq, Applications, and MCP.

Run with Naftiko LuciqApplicationsMCP

What You Can Do

GET
Listapplications — List Applications
/v1/applications

MCP Tools

list-applications

List Applications

read-only idempotent

Capability Spec

mcp-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Luciq MCP Server — Applications
  description: 'Luciq MCP Server — Applications. 1 operation. Lead operation: List Applications.
    Self-contained Naftiko capability covering the application enumeration surface of the Luciq MCP Server.'
  tags:
  - Luciq
  - Applications
  - MCP
  created: '2026-05-23'
  modified: '2026-05-23'
binds:
- namespace: env
  keys:
    LUCIQ_MCP_TOKEN: LUCIQ_MCP_TOKEN
capability:
  consumes:
  - type: http
    namespace: mcp-applications
    baseUri: https://api.luciq.ai/api/mcp
    description: Luciq MCP Server Applications surface. Self-contained, no shared references.
    resources:
    - name: applications
      path: /applications
      operations:
      - name: listapplications
        method: GET
        description: List Applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: platform
          in: query
          type: string
          description: Filter by platform (ios, android, react_native, flutter).
        - name: limit
          in: query
          type: integer
          description: Page size (1-200, default 50).
        - name: offset
          in: query
          type: integer
          description: Page offset (default 0).
    authentication:
      type: bearer
      key: Authorization
      value: 'Bearer {{env.LUCIQ_MCP_TOKEN}}'
      placement: header
  exposes:
  - type: rest
    namespace: mcp-applications-rest
    port: 8080
    description: REST adapter for Luciq MCP Server — 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: List Applications
        call: mcp-applications.listapplications
        with:
          platform: rest.platform
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: mcp-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Luciq MCP Server — Applications. One tool per consumed operation.
    tools:
    - name: list-applications
      description: List Applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: mcp-applications.listapplications
      with:
        platform: tools.platform
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.