WAS Stape
FreeNot checkedEnables AI assistants to manage Stape.io sGTM containers, CAPI Gateways, custom domains, and power-ups via 10 tools.
About
Enables AI assistants to manage Stape.io sGTM containers, CAPI Gateways, custom domains, and power-ups via 10 tools.
README
Production-quality shareable Model Context Protocol (MCP) server for Stape.io — standard stdio transport, zero-server setup, interactive credential CLI, cross-platform support.
Exposes 10 tools to AI assistants (Claude, Cursor, Antigravity, VS Code, Zed) for automating server-side Google Tag Manager (sGTM) containers, Conversions API (CAPI) Gateways, custom domains, and power-ups.
Prerequisites
- Node.js 18+
- A Stape.io account (https://stape.io)
- Stape Account API Key (
Account settings->API Keys)
Quick start — 3 steps
Step 1 — Get your Stape API Key
- Log into your Stape.io account.
- Click your account name at the top right -> Account settings.
- Go to API Keys -> click Create API key.
- Copy your key securely.
Step 2 — Connect credentials
Run the interactive setup command:
npx -y github:was-member-keramat/was-stape-mcp auth
Credentials are validated against Stape.io and stored locally at ~/.was-stape-mcp/config.json with secure file permissions (0600).
Step 3 — Add to your AI client configuration
Add the following to your AI client's MCP configuration (mcpServers section):
Claude Desktop / Cursor / Antigravity Config (claude_desktop_config.json or mcp_config.json)
{
"mcpServers": {
"WAS Stape MCP": {
"command": "npx",
"args": ["-y", "github:was-member-keramat/was-stape-mcp"]
}
}
}
What you can ask the AI
Here are example prompts you can use with your AI coding assistant:
- Discovery: "List all my sGTM containers on Stape."
- Inspection: "Show details for container ID
cnt_12345." - Domains: "What custom domains are configured for my container?"
- Provisioning: "Create a new sGTM container named
my-ecommerce-sgtmin theusregion." - Logs & Traffic: "Show me request statistics and bandwidth usage for the past 7 days."
- Power-ups: "Which power-ups are currently enabled for container
cnt_12345?" - Raw API: "Run a GET call to
/v1/containerusingstape_api."
All tools (10 total)
| Category | Tool Name | Description |
|---|---|---|
| Account | stape_get_account |
Get account details, subscription plan, and usage stats |
| Containers | stape_list_containers |
List sGTM and CAPI Gateway containers |
| Containers | stape_get_container |
Get details for a specific container by ID |
| Containers | stape_create_container |
Create a new sGTM or CAPI container |
| Containers | stape_delete_container |
Delete or cancel a container by ID |
| Domains | stape_list_domains |
List custom domains configured for a container |
| Domains | stape_add_domain |
Add a custom domain to an sGTM container |
| Analytics & Logs | stape_get_container_logs |
Get request statistics and traffic bandwidth |
| Power-ups | stape_list_powerups |
List power-ups enabled on a container |
| Universal | stape_api |
Raw API caller escape hatch (method, path, body) |
CLI commands
| Command | Usage |
|---|---|
npx -y github:was-member-keramat/was-stape-mcp |
Start the MCP server (used by AI tools via stdio) |
npx -y github:was-member-keramat/was-stape-mcp auth |
Connect / re-connect Stape API Key |
npx -y github:was-member-keramat/was-stape-mcp status |
Display saved config location and timestamp |
npx -y github:was-member-keramat/was-stape-mcp logout |
Delete saved local credentials |
npx -y github:was-member-keramat/was-stape-mcp help |
Show CLI help text |
Multi-account setup
You can override local config with environment variables (STAPE_API_KEY, STAPE_BASE_URL). This enables configuring multiple Stape accounts in your AI client:
{
"mcpServers": {
"Stape Main": {
"command": "npx",
"args": ["-y", "github:was-member-keramat/was-stape-mcp"],
"env": {
"STAPE_API_KEY": "key_main_account_token"
}
},
"Stape Client B": {
"command": "npx",
"args": ["-y", "github:was-member-keramat/was-stape-mcp"],
"env": {
"STAPE_API_KEY": "key_client_b_token"
}
}
}
}
Troubleshooting
Windows Script Execution Error
If PowerShell blocks script execution:
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy RemoteSigned
Windows npx Cache Issues
If updates aren't pulled automatically on Windows:
Remove-Item -Recurse -Force "$env:LOCALAPPDATA\npm-cache" -ErrorAction SilentlyContinue
npm cache clean --force
Invalid API Key Errors
Ensure you created an Account API Key (Account settings -> API Keys) and not a restricted single-container key unless you are targeting specific container scope.
License
MIT License. Free to share, remix, redistribute. Author: was-member-keramat.
Installing WAS Stape
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/was-member-keramat/was-stape-mcpFAQ
Is WAS Stape MCP free?
Yes, WAS Stape MCP is free — one-click install via Unyly at no cost.
Does WAS Stape need an API key?
No, WAS Stape runs without API keys or environment variables.
Is WAS Stape hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install WAS Stape in Claude Desktop, Claude Code or Cursor?
Open WAS Stape on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare WAS Stape with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
