Skip to main content
Glama
alexgoller

Illumio MCP Server

by alexgoller

create-service

Create a service in the Illumio PCE by defining ports/protocols or Windows processes/services. Supports inbound and outbound qualifiers, including egress process matching for Windows endpoints.

Instructions

Create a service in the PCE. Supply at least one of service_ports, windows_services or windows_egress_services. windows_egress_services matches a process on the consumer side and needs a Windows VEN there. WRITE OPERATION: changes PCE state. In clients that gate tool calls (Claude Desktop, Claude Code), this pauses for the user to approve it -- the call has not failed and must not be retried while waiting.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName of the service
descriptionNoDescription of the service
service_portsNoArray of port/protocol definitions
windows_servicesNoInbound Windows process/service qualifiers. Each entry needs at least one of port, process_name, service_name.
windows_egress_servicesNoOutbound process qualifiers, matched on the CONSUMER side. Takes process_name/service_name ONLY — the PCE rejects port/proto here, so pair it with service_ports for the port. Requires a Windows VEN on the consumer; non-Windows consumers ignore the process and match on port alone.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.8.0

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden and explicitly states 'WRITE OPERATION: changes PCE state.' It also discloses that clients may pause for user approval and that retrying during the wait is incorrect. This meaningfully informs agent behavior beyond the schema.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences with no filler: purpose, critical parameter constraint, and an operational warning. Every sentence earns its place, and the most important usage requirement is front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a create tool with no annotations and no output schema, the description covers the essential selection, parameter constraints, side-effect, and retry behavior. It does not discuss duplication, authorization, or the return value, but those are less critical for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3, but the description adds real semantics beyond the schema: the at-least-one-of constraint, the consumer-side matching behavior of windows_egress_services, and the note that egress only takes process_name/service_name and must be paired with service_ports. This compensates well for what the schema alone does not convey.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a clear verb and resource: 'Create a service in the PCE.' It then elaborates the three supported service definitions. It does not explicitly contrast with siblings like update-service or get-services, but the action and noun are specific enough for basic differentiation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives practical usage constraints: 'Supply at least one of service_ports, windows_services or windows_egress_services.' It also flags a conditional requirement for windows_egress_services needing a Windows VEN on the consumer. It does not explicitly name alternatives or when not to use this tool, so it misses the top benchmark.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.