Naftiko · Capability

Hosted Mcp Multi Modal Mirror

A capability that mirrors a Naftiko-hosted MCP server across multiple agent surfaces (Claude, Copilot, ADK) so the same tools are reachable everywhere.

Run with Naftiko NaftikoMCPMulti-Modal

What You Can Do

GET
List mirrored servers
/servers

MCP Tools

list-mirrored-servers

read-only
get-server

read-only

Capability Spec

hosted-mcp-multi-modal-mirror.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  title: Hosted Mcp Multi Modal Mirror
  description: A capability that mirrors a Naftiko-hosted MCP server across multiple agent surfaces (Claude, Copilot, ADK) so the same tools are reachable everywhere.
  tags: [Naftiko, MCP, Multi-Modal]
  created: '2026-05-01'
  modified: '2026-05-04'
binds:
- namespace: naftiko-env
  keys: {NAFTIKO_API_KEY: NAFTIKO_API_KEY}
capability:
  consumes:
  - namespace: naftiko-control
    type: http
    baseUri: https://api.naftiko.com
    authentication: {type: bearer, token: '{{NAFTIKO_API_KEY}}'}
    resources:
    - {name: mcp-servers, path: /v1/mcp-servers, operations: [{name: list-mcp-servers, method: GET}]}
    - name: mcp-server
      path: /v1/mcp-servers/{{server_id}}
      operations:
      - {name: get-mcp-server, method: GET, inputParameters: [{name: server_id, in: path}]}
  exposes:
  - type: rest
    address: 0.0.0.0
    port: 8080
    namespace: hosted-mcp-multi-modal-mirror-rest
    description: REST surface for hosted MCP mirror.
    resources:
    - {name: servers, path: /servers, operations: [{method: GET, name: list-mirrored-servers, call: naftiko-control.list-mcp-servers}]}
  - type: mcp
    address: 0.0.0.0
    port: 3010
    namespace: hosted-mcp-multi-modal-mirror-mcp
    description: MCP for the hosted mirror.
    tools:
    - {name: list-mirrored-servers, hints: {readOnly: true}, call: naftiko-control.list-mcp-servers}
    - name: get-server
      hints: {readOnly: true}
      inputParameters: [{name: server_id, type: string, required: true}]
      call: naftiko-control.get-mcp-server
  - type: skill
    address: 0.0.0.0
    port: 3011
    namespace: hosted-mcp-multi-modal-mirror-skills
    description: Skill for hosted MCP mirror.
    skills:
    - name: hosted-mcp-multi-modal-mirror
      description: Hosted MCP multi-modal mirror.
      location: file:///opt/naftiko/skills/hosted-mcp-multi-modal-mirror
      allowed-tools: list-mirrored-servers,get-server
      tools:
      - {name: list-mirrored-servers, from: {sourceNamespace: hosted-mcp-multi-modal-mirror-mcp, action: list-mirrored-servers}}
      - {name: get-server, from: {sourceNamespace: hosted-mcp-multi-modal-mirror-mcp, action: get-server}}