Skip to main content

MCP servers

walkerOS provides Model Context Protocol servers for AI assistant integration.

PackagePurpose
@walkeros/mcpFlow development — tools, reference resources, guided prompts, cloud API
@walkeros/mcp-source-browserHTML tagging — generate, parse, and validate data-elb attributes

Claude Code plugin

The recommended way to get started in Claude Code. One plugin installs both MCP servers and 18 skills that teach Claude how to build sources, destinations, transformers, and flows.

Step 1 — add the marketplace:

/plugin marketplace add elbwalker/walkerOS

Step 2 — install the plugin:

/plugin install walkeros@elbwalker-walkerOS

That's it. Claude Code will reload with the MCP tools and skills active.

Quick start

For Claude Desktop or other MCP clients, add servers to your configuration manually:

Loading...

Each server starts on STDIO and registers its tools automatically.

Environment variables

VariableUsed byRequiredDefaultPurpose
WALKEROS_TOKENmcpNoBearer token for cloud API and remote bundling
WALKEROS_PROJECT_IDmcpNoActive project ID (proj_...)
WALKEROS_APP_URLmcpNohttps://app.walkeros.ioBase URL override

@walkeros/mcp-source-browser works without any environment variables. When WALKEROS_TOKEN is set, the api tool is registered for cloud operations.


@walkeros/mcp (flow development)

Unified server for flow development, package discovery, reference resources, guided prompts, and cloud API. Replaces the previous separate @walkeros/mcp-cli and @walkeros/mcp-api packages.

Installation

Loading...

Tools (9)

flow_load

Load an existing flow configuration from a local file path, URL, or walkerOS API, or create a new empty flow by specifying a platform.

ParameterTypeRequiredDescription
sourcestringNoFlow source: file path, URL, or API flow ID. Omit to create new.
platform"web" | "server"NoPlatform for new flows. Required when source is omitted.

flow_validate

Validate walkerOS events, flow configurations, mapping rules, or data contracts.

ParameterTypeRequiredDescription
type"event" | "flow" | "mapping" | "contract"YesValidation type
inputstringYesJSON string, file path, or URL to validate
flowstringNoFlow name for multi-flow configs
pathstringNoEntry path for package schema validation

flow_bundle

Bundle a walkerOS flow configuration into deployable JavaScript.

ParameterTypeRequiredDescription
configPathstringYesPath to flow configuration file
flowstringNoFlow name for multi-flow configs
statsbooleanNoReturn bundle statistics (default: true)
outputstringNoOutput file path
remotebooleanNoUse remote cloud bundling (requires WALKEROS_TOKEN). Default: false
contentobjectNoFlow.Config JSON content (required when remote: true)

flow_simulate

Simulate events through a walkerOS flow without making real API calls. Returns summarized per-destination results.

ParameterTypeRequiredDescription
configPathstringYesPath to flow configuration file
eventstringNoEvent as JSON string, file path, or URL
flowstringNoFlow name for multi-flow configs
platform"web" | "server"NoOverride platform detection
examplestringNoLoad event from a step example
stepstringNoStep to use with example parameter

flow_push

Push a real event through a walkerOS flow to actual destinations. This makes real API calls. Best for server-side flows — web destinations require browser globals not available in Node.js.

ParameterTypeRequiredDescription
configPathstringYesPath to flow configuration file
eventstringYesEvent as JSON string, file path, or URL
flowstringNoFlow name for multi-flow configs
platform"web" | "server"NoOverride platform detection

flow_examples

List all step examples in a walkerOS flow configuration.

ParameterTypeRequiredDescription
configPathstringYesPath to flow configuration file
flowstringNoFlow name for multi-flow configs
stepstringNoFilter to a specific step (e.g., "destination.gtag")
fullbooleanNoReturn full in/out/mapping data (default: false, metadata only)

Browse walkerOS packages or look up a specific one. Without package name: returns catalog filtered by type/platform. With package name: returns metadata.

ParameterTypeRequiredDescription
packagestringNoExact npm package name for lookup
type"source" | "destination" | "transformer" | "store"NoFilter by type (browse)
platform"web" | "server"NoFilter by platform (browse)
versionstringNoPackage version (default: latest)

package_get

Fetch walkerOS package details from npm. By default returns schemas + hint texts + example summaries. Use section parameter for full content.

ParameterTypeRequiredDescription
packagestringYesExact npm package name
versionstringNoPackage version (default: latest)
section"hints" | "examples" | "all"NoSection to expand with full content

api

Unified walkerOS cloud API. Only available when WALKEROS_TOKEN is set.

ParameterTypeRequiredDescription
actionenumYesAPI action (see below)
projectIdstringNoProject ID (proj_...). Required for: project.get/update/delete, flow.create, flow.list. Falls back to WALKEROS_PROJECT_ID env.
flowIdstringNoFlow ID (flow_...) or config ID (cfg_...). Required for: flow.get/update/delete/duplicate, deploy. For deployment.get/delete: can be a deployment slug.
namestringNoName for create/update operations
contentobjectNoFlow.Config JSON for flow operations
waitbooleanNoWait for deploy to complete (default: true)

Actions: whoami, project.list, project.get, project.create, project.update, project.delete, flow.list, flow.get, flow.create, flow.update, flow.delete, flow.duplicate, deploy, deployment.get, deployment.list, deployment.create, deployment.delete

Resources

URIDescription
walkeros://reference/flow-schemaFlow.Config structure and connection rules
walkeros://reference/event-modelEvent naming, properties, auto-populated fields
walkeros://reference/mappingMapping syntax (data/map/loop/set/condition/consent/policy)
walkeros://reference/consentConsent model (destination/rule/field level)
walkeros://reference/variablesVariable patterns ($var/$env/$def/$code/$store)
walkeros://reference/contractEvent schemas, wildcards, inheritance
walkeros://reference/apiOpenAPI 3.1 specification
walkeros://reference/packagesFull package catalog
walkeros://schema/{packageName}Per-package JSON schemas

Prompts

PromptDescription
add-stepAdd a source, destination, transformer, or store to a flow
setup-mappingConfigure event mapping for a step
manage-contractCreate/update event contracts (bidirectional with mappings)
use-definitionsExtract shared patterns into definitions and variables

@walkeros/mcp-source-browser (HTML tagging tools)

Generate, parse, and validate walkerOS data-elb HTML attributes using real DOM parsing (JSDOM). No API token or CLI dependency required.

Installation

Loading...

Tools (3)

generate_tagging

Generate walkerOS data-elb HTML attributes from structured input. Returns attribute key-value pairs and an example HTML snippet.

ParameterTypeRequiredDescription
entitystringNoEntity name (creates data-elb="entity")
dataobjectNoEntity properties as key:value pairs
actionobjectNoTrigger:action pairs for data-elbaction (nearest entity)
actionsobjectNoTrigger:action pairs for data-elbactions (all entities)
contextobjectNoContext properties for data-elbcontext
globalsobjectNoGlobal properties for data-elbglobals
linkobjectNoLink relationships for data-elblink
prefixstringNoCustom prefix (default: data-elb)

At least one parameter must be provided.

parse_tagging

Parse HTML with data-elb attributes using real DOM parsing (JSDOM). Extracts all walkerOS events and globals.

ParameterTypeRequiredDescription
htmlstringYesHTML snippet with data-elb attributes
prefixstringNoCustom prefix (default: data-elb)

validate_tagging

Validate HTML data-elb tagging for common mistakes. Checks for orphan actions, missing entities, unknown triggers, orphan properties, and entities without actions.

ParameterTypeRequiredDescription
htmlstringYesHTML snippet to validate
prefixstringNoCustom prefix (default: data-elb)

Resources

URIDescription
walkeros://docs/tagging/html-attributesComplete guide to data-elb HTML attribute tagging
walkeros://docs/tagging/taggercreateTagger() fluent API reference

Example workflows

Create and validate a flow

Ask your AI assistant:

"Create a new web flow, add a GA4 destination, then validate it."

The assistant uses flow_load to create a skeleton, the add-step prompt to add GA4, and flow_validate to check the result.

Simulate events

"Simulate a page view event through my flow at ./flow.json."

The assistant calls flow_simulate and returns per-destination results showing which destinations received the event.

Deploy a flow

"Deploy flow cfg_abc123 and wait for it to finish."

The assistant calls api({ action: "deploy", id: "cfg_abc123" }) and streams progress updates through bundling, publishing, and activation.

Set up event mapping

"Help me set up mapping for the gtag destination in my flow."

The assistant uses the setup-mapping prompt, reads the mapping reference resource, fetches package examples, and generates mapping rules.

Generate HTML tagging

"Generate data-elb attributes for a promotion entity with name 'Summer Sale' and a click action."

The assistant calls generate_tagging with entity: "promotion", data: { name: "Summer Sale" }, and action: { click: "click" }, returning ready-to-use HTML attributes.

Discover a package

"What configuration does the Snowplow destination need?"

The assistant calls package_search for @walkeros/web-destination-snowplow, then package_get to fetch schemas, hints, and examples.

Migration from separate servers

The previous @walkeros/mcp-cli and @walkeros/mcp-api packages are now unified in @walkeros/mcp. Key changes:

OldNew
@walkeros/mcp-cli@walkeros/mcp
@walkeros/mcp-api (17 tools)api tool in @walkeros/mcp
validateflow_validate
bundleflow_bundle
simulateflow_simulate
pushflow_push
examples_listflow_examples
flow_initflow_load
flow_schema toolwalkeros://reference/flow-schema resource

Next steps

💡 Need implementation support?
elbwalker offers hands-on support: setup review, measurement planning, destination mapping, and live troubleshooting. Book a 2-hour session (€399)