Remitian · Capability

Remitian Tax Payment API — Jurisdictions

Remitian Tax Payment API — Jurisdictions. 2 operations. Lead operation: List supported jurisdictions. Self-contained Naftiko capability covering one Remitian business surface.

Run with Naftiko RemitianJurisdictions

What You Can Do

GET
Listjurisdictions — List supported jurisdictions
/v1/v1/jurisdictions
GET
Getjurisdiction — Retrieve a jurisdiction
/v1/v1/jurisdictions/{jurisdictionid}

MCP Tools

list-supported-jurisdictions

List supported jurisdictions

read-only idempotent
retrieve-jurisdiction

Retrieve a jurisdiction

read-only idempotent

Capability Spec

tax-payment-jurisdictions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Remitian Tax Payment API — Jurisdictions
  description: 'Remitian Tax Payment API — Jurisdictions. 2 operations. Lead operation: List supported jurisdictions. Self-contained
    Naftiko capability covering one Remitian business surface.'
  tags:
  - Remitian
  - Jurisdictions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    REMITIAN_API_KEY: REMITIAN_API_KEY
capability:
  consumes:
  - type: http
    namespace: tax-payment-jurisdictions
    baseUri: https://api.remitian.com
    description: Remitian Tax Payment API — Jurisdictions business capability. Self-contained, no shared references.
    resources:
    - name: v1-jurisdictions
      path: /v1/jurisdictions
      operations:
      - name: listjurisdictions
        method: GET
        description: List supported jurisdictions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: country
          in: query
          type: string
          description: Filter by country code (ISO 3166-1 alpha-2)
        - name: type
          in: query
          type: string
          description: Filter by jurisdiction type
    - name: v1-jurisdictions-jurisdictionId
      path: /v1/jurisdictions/{jurisdictionId}
      operations:
      - name: getjurisdiction
        method: GET
        description: Retrieve a jurisdiction
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: jurisdictionId
          in: path
          type: string
          description: Unique identifier of the jurisdiction
          required: true
    authentication:
      type: bearer
      token: '{{env.REMITIAN_API_KEY}}'
  exposes:
  - type: rest
    namespace: tax-payment-jurisdictions-rest
    port: 8080
    description: REST adapter for Remitian Tax Payment API — Jurisdictions. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/jurisdictions
      name: v1-jurisdictions
      description: REST surface for v1-jurisdictions.
      operations:
      - method: GET
        name: listjurisdictions
        description: List supported jurisdictions
        call: tax-payment-jurisdictions.listjurisdictions
        with:
          country: rest.country
          type: rest.type
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/jurisdictions/{jurisdictionid}
      name: v1-jurisdictions-jurisdictionid
      description: REST surface for v1-jurisdictions-jurisdictionId.
      operations:
      - method: GET
        name: getjurisdiction
        description: Retrieve a jurisdiction
        call: tax-payment-jurisdictions.getjurisdiction
        with:
          jurisdictionId: rest.jurisdictionId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tax-payment-jurisdictions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Remitian Tax Payment API — Jurisdictions. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-supported-jurisdictions
      description: List supported jurisdictions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tax-payment-jurisdictions.listjurisdictions
      with:
        country: tools.country
        type: tools.type
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-jurisdiction
      description: Retrieve a jurisdiction
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tax-payment-jurisdictions.getjurisdiction
      with:
        jurisdictionId: tools.jurisdictionId
      outputParameters:
      - type: object
        mapping: $.