Skip to main content
FrontMCP’s environment-awareness system lets you declaratively restrict when entries (tools, resources, prompts, skills, agents) are discoverable and executable, based on the runtime environment. Entries that don’t match the current environment are automatically filtered from discovery and blocked from execution.
This enables platform-specific tools (e.g., Apple Notes on macOS only), runtime-specific resources (e.g., Node.js file system), and environment-gated features (e.g., debug tools in development only).

The availableWhen Option

Add availableWhen to any entry’s metadata to constrain its availability:

Matching Semantics

  • AND across fields — all specified fields must match
  • OR within arrays — at least one value in an array must match
  • Omitted fields — unconstrained (matches everything)
  • Empty array — matches nothing (entry is never available)
  • No availableWhen — always available (default)

Available Fields

platform

Operating system, matching process.platform values:

runtime

JavaScript runtime:

deployment

Deployment mode:

env

NODE_ENV value:

Supported Entry Types

availableWhen works on all five entry types:

Runtime Context API

Inside execute() methods, use runtime context helpers for imperative checks:

Available Methods

These methods are available on ToolContext, ResourceContext, PromptContext, and AgentContext.

Multi-Platform Pattern

When building tools that serve the same purpose across platforms, use separate files with availableWhen in each:
Register all variants — the SDK automatically exposes only the one matching the current platform:
The multi-platform file pattern (name.platform.tool.ts) is recommended when you have platform-specific implementations of the same logical capability. For simple cases where a single tool needs a platform check, use this.isPlatform() inside execute() instead.

Error Handling

When a client tries to call a tool that exists but is unavailable in the current environment, the SDK returns an EntryUnavailableError (HTTP 403) with both the constraint and the current context:
This is distinct from a ToolNotFoundError (404), helping clients understand why a tool is inaccessible.

How It Works: Registry-Level Filtering

availableWhen is not the same as authorization or rule-based filtering. It is evaluated at the registry level during server boot, not in HTTP request flows.
Key differences:
  • availableWhen is a hard constraint — filtered entries cannot be listed OR called
  • It runs at registry initialization, not in HTTP flows — no per-request overhead
  • The runtime context (OS, runtime, deployment, NODE_ENV) is detected once and cached
  • Results are logged at boot time for operational visibility

Boot-Time Logging

When entries have availableWhen constraints, the SDK logs a summary at startup:
Empty constraint arrays trigger a warning (likely a configuration bug):