dfb91781aa
CI / lint (pull_request) Successful in 14s
CI / typecheck (pull_request) Successful in 26s
CI / security (pull_request) Successful in 21s
CI / quality (pull_request) Successful in 15s
CI / integration_tests (pull_request) Successful in 4m10s
CI / build (pull_request) Successful in 16s
CI / unit_tests (pull_request) Successful in 8m23s
CI / docker (pull_request) Successful in 39s
CI / coverage (pull_request) Successful in 6m21s
CI / lint (push) Waiting to run
CI / typecheck (push) Waiting to run
CI / security (push) Waiting to run
CI / quality (push) Waiting to run
CI / unit_tests (push) Waiting to run
CI / integration_tests (push) Waiting to run
CI / coverage (push) Blocked by required conditions
CI / build (push) Waiting to run
CI / docker (push) Blocked by required conditions
54 lines
1.1 KiB
YAML
54 lines
1.1 KiB
YAML
# Example: MCP server tool
|
|
# Delegates execution to a tool on an MCP server.
|
|
|
|
name: devops/docker-build
|
|
description: Build a Docker image via the DevOps MCP server
|
|
source: mcp
|
|
mcp_server: devops-mcp
|
|
mcp_tool_name: docker_build
|
|
|
|
input_schema:
|
|
type: object
|
|
required:
|
|
- context_dir
|
|
- image_tag
|
|
properties:
|
|
context_dir:
|
|
type: string
|
|
description: Docker build context directory
|
|
image_tag:
|
|
type: string
|
|
description: Tag for the built image
|
|
dockerfile:
|
|
type: string
|
|
description: Path to Dockerfile (relative to context_dir)
|
|
default: Dockerfile
|
|
|
|
output_schema:
|
|
type: object
|
|
properties:
|
|
image_id:
|
|
type: string
|
|
build_log:
|
|
type: string
|
|
|
|
capability:
|
|
read_only: false
|
|
writes: true
|
|
write_scope: container-registry
|
|
checkpointable: false
|
|
side_effects:
|
|
- network
|
|
- container-registry
|
|
unsafe: false
|
|
human_approval_required: false
|
|
|
|
resource_slots:
|
|
- name: source_repo
|
|
resource_type: git-checkout
|
|
access: read_only
|
|
description: Source code repository for the Docker build
|
|
binding: contextual
|
|
|
|
timeout: 600
|