Naftiko · Capability

Mcp Bundle Format Publish Capability

A capability that publishes MCP servers as installable bundle files (mcpb) to a registry.

Run with Naftiko NaftikoMCPBundlePublish

What You Can Do

GET
List mcp bundles
/bundles
POST
Publish mcp bundle
/bundles/publish

MCP Tools

list-mcp-bundles

read-only
publish-mcp-bundle

download-mcp-bundle

read-only

Capability Spec

mcp-bundle-format-publish-capability.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  title: Mcp Bundle Format Publish Capability
  description: A capability that publishes MCP servers as installable bundle files (mcpb) to a registry.
  tags: [Naftiko, MCP, Bundle, Publish]
  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-bundles, path: /v1/mcp-bundles, operations: [{name: list-mcp-bundles, method: GET}, {name: publish-mcp-bundle, method: POST}]}
    - name: mcp-bundle
      path: /v1/mcp-bundles/{{bundle_id}}
      operations:
      - {name: get-mcp-bundle, method: GET, inputParameters: [{name: bundle_id, in: path}]}
    - name: mcp-bundle-download
      path: /v1/mcp-bundles/{{bundle_id}}/download
      operations:
      - {name: download-mcp-bundle, method: GET, inputParameters: [{name: bundle_id, in: path}]}
  exposes:
  - type: rest
    address: 0.0.0.0
    port: 8080
    namespace: mcp-bundle-format-publish-capability-rest
    description: REST surface for MCP bundle publish.
    resources:
    - {name: bundles, path: /bundles, operations: [{method: GET, name: list-mcp-bundles, call: naftiko-control.list-mcp-bundles}]}
    - {name: publish, path: /bundles/publish, operations: [{method: POST, name: publish-mcp-bundle, call: naftiko-control.publish-mcp-bundle}]}
  - type: mcp
    address: 0.0.0.0
    port: 3010
    namespace: mcp-bundle-format-publish-capability-mcp
    description: MCP for bundle publish.
    tools:
    - {name: list-mcp-bundles, hints: {readOnly: true}, call: naftiko-control.list-mcp-bundles}
    - {name: publish-mcp-bundle, call: naftiko-control.publish-mcp-bundle}
    - name: download-mcp-bundle
      hints: {readOnly: true}
      inputParameters: [{name: bundle_id, type: string, required: true}]
      call: naftiko-control.download-mcp-bundle
  - type: skill
    address: 0.0.0.0
    port: 3011
    namespace: mcp-bundle-format-publish-capability-skills
    description: Skill for MCP bundles.
    skills:
    - name: mcp-bundle-format-publish-capability
      description: MCP bundle format publish.
      location: file:///opt/naftiko/skills/mcp-bundle-format-publish-capability
      allowed-tools: list-mcp-bundles,publish-mcp-bundle,download-mcp-bundle
      tools:
      - {name: list-mcp-bundles, from: {sourceNamespace: mcp-bundle-format-publish-capability-mcp, action: list-mcp-bundles}}
      - {name: publish-mcp-bundle, from: {sourceNamespace: mcp-bundle-format-publish-capability-mcp, action: publish-mcp-bundle}}
      - {name: download-mcp-bundle, from: {sourceNamespace: mcp-bundle-format-publish-capability-mcp, action: download-mcp-bundle}}