Remote · Capability

Remote Files And Custom Fields API — Cost Calculator

Self-contained Naftiko capability for estimating the loaded employment cost of hiring in a given country via Remote.

Remote Files And Custom Fields API — Cost Calculator is a Naftiko capability published by Remote, one of 10 capabilities the APIs.io network indexes for this provider. It bundles 2 operations.

The capability includes 1 read-only operation and 1 state-changing operation. Lead operation: Estimate the all-in annual cost of hiring an employee in a given country (gross salary + employer contributions + Remote fee). Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Remote, Cost Calculator, Hiring, and EOR.

Run with Naftiko RemoteCost CalculatorHiringEOR

MCP Tools

remote-estimate-employment-cost

Estimate the all-in annual cost of hiring an employee in a given country (gross salary + employer contributions + Remote fee).

idempotent
remote-list-countries

List countries Remote supports for hiring, with supported employment models per country.

read-only idempotent

Capability Spec

cost-calculator.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Remote Files And Custom Fields API — Cost Calculator
  description: 'Self-contained Naftiko capability for estimating the loaded employment cost of hiring in a given country via Remote.'
  tags:
  - Remote
  - Cost Calculator
  - Hiring
  - EOR
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    REMOTE_ACCESS_TOKEN: REMOTE_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: cost-calculator
    baseUri: https://gateway.remote.com
    description: Remote Cost Calculator business capability.
    resources:
    - name: v1-estimate
      path: /v1/cost_calculator/estimate
      operations:
      - name: estimateemploymentcost
        method: POST
        description: Estimate Employment Cost
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-countries
      path: /v1/countries
      operations:
      - name: listcountries
        method: GET
        description: List Supported Countries
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      value: '{{env.REMOTE_ACCESS_TOKEN}}'
      placement: header
  exposes:
  - type: mcp
    namespace: cost-calculator-mcp
    port: 9090
    transport: http
    description: MCP adapter for Remote Cost Calculator.
    tools:
    - name: remote-estimate-employment-cost
      description: Estimate the all-in annual cost of hiring an employee in a given country (gross salary + employer contributions + Remote fee).
      hints: { readOnly: false, destructive: false, idempotent: true }
      call: cost-calculator.estimateemploymentcost
      with:
        body: tools.body
    - name: remote-list-countries
      description: List countries Remote supports for hiring, with supported employment models per country.
      hints: { readOnly: true, destructive: false, idempotent: true }
      call: cost-calculator.listcountries