WardenPoint MCP server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@WardenPoint MCP serverCreate a contact for Jane Doe with email jane@example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
WardenPoint MCP server
An MCP server that lets an agent configure a WardenPoint account — recipients, contacts, groups, notification rules, escalation policies, on-call schedules, alert-source integrations, routing rules and telephony — without anyone opening the dashboard.
It speaks stdio and exposes one tool per operation of your installation's own OpenAPI description.
{
"mcpServers": {
"wardenpoint": {
"command": "npx",
"args": ["-y", "@wardenpoint/mcp-server"],
"env": {
"WARDENPOINT_BASE_URL": "https://wardenpoint.com",
"WARDENPOINT_API_TOKEN": "wp_live_..."
}
}
}
}That is the whole installation. Your MCP client starts the server on demand; nothing runs between sessions.
The one rule this server exists to keep
There is no second copy of the contract here.
Every tool — its name, its text, its arguments, their descriptions, their enums
and bounds, the responses it can answer with — is read at startup from the
OpenAPI description served by the installation you are configuring
(GET {WARDENPOINT_BASE_URL}/docs). Nothing about the API is restated in this
package.
That is deliberate, and it is why the tools cannot quietly drift:
an endpoint added to your installation appears as a tool the next time the server starts — no package upgrade involved;
a description reworded upstream rewords the agent's instructions with it;
an operation nobody described is invisible to the agent, which is the correct failure and the reason
--spec-reportexists.
A description bundled inside this package would describe whatever was current when the package was published, while the agent talks to whatever you actually run. There is no offline fallback for the same reason: every tool here is an HTTP call to that installation, so if it cannot be reached, a complete tool list would be a list of things that cannot be done.
Related MCP server: ControlAPI-MCP
Requirements
Node 20 or newer. No build step, no native modules.
Environment
Variable | Required | Meaning |
| yes | Origin of the installation — no trailing slash, no |
| to call | A company API key from Dashboard → Integrations → API keys. Sent as |
| no |
|
| no | Per-request timeout, default |
| no | Read the description from a local file instead of the installation. For developing against a description that is not deployed yet. |
The token is read from the environment at every start and is never written anywhere by this package.
What the key is allowed to do
Abilities are chosen when you issue the key, and a 403 names the one that was missing:
config.read— read the whole configuration. A good place to start: the agent can explain an account somebody else built and change nothing.config.write— create, update, delete.notifications.send/notifications.read— fire alerts and inspect them.
No ability can read a secret. There is no such ability in the vocabulary, so it cannot be granted by mistake. The API reports whether a credential is set and whether it verified — never its value.
Running
npx -y @wardenpoint/mcp-server --list-tools # every tool, with its arguments
npx -y @wardenpoint/mcp-server --spec-report # gaps in the description itselfBoth talk to WARDENPOINT_BASE_URL to fetch the description; neither needs a
token. Without arguments the process speaks MCP over stdio and is meant to be
started by a client, not by hand.
Two credentials, and why they are not interchangeable
API key (
WARDENPOINT_API_TOKEN) — who you are. Every configuration tool uses it.Integration secret — proves a specific alert-source webhook is genuine. Two tools accept it as an argument; it is not read from the environment and not stored here.
What this server deliberately cannot do
Two steps in setting up an account need a human at a screen, and both stay that way on purpose:
Scanning a Telegram QR code.
Typing a provider secret.
For each, the agent asks the installation to issue a one-time link, shows it to the person, and polls for the result. The person opens that link in the dashboard, behind their own login, and types the value themselves. Ask an agent to relay a secret through the conversation and it will refuse — that is what the link exists to avoid.
Errors reach the agent intact
The API spends real effort explaining refusals — which ability was missing, which field failed validation, why a send queued nothing. This server passes the body through whole, on success and failure alike, because an agent repairs itself from that text and nothing else.
Licence
MIT. See LICENSE.
Issues and contributions: https://github.com/WardenPoint/wardenpoint-mcp.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceDynamically converts any REST service's OpenAPI specification into MCP tools, enabling interaction with REST endpoints through natural language. Supports Spring Boot services and includes auto-discovery for common API configurations.
- AlicenseAqualityCmaintenanceConverts any OpenAPI/REST API into MCP tools with dynamic server switching, variable substitution, and runtime configuration. Enables seamless interaction with multiple API environments through natural language without pre-configuration.125MIT
- Flicense-qualityCmaintenanceTurns OpenAPI specs into MCP tools with secure defaults, risk inspection, confirmation gates, response limits, audit logging, and secret redaction.
Related MCP Connectors
Point Gecko at an OpenAPI spec; get first-call-correct, auth-hidden agent tools.
Operate smplkit from your agent: feature flags, config, logging, audit, and scheduled jobs.
Operator-as-agent MCP hub. 6 tools. First $5 free, then $0.001/call.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/WardenPoint/wardenpoint-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server