wais-mcp
Enables Windsurf (by Codeium) to interact with any WAIS-compatible website, providing tools for discovery, registration, execution, confirmation, and status checking.
Enables CrewAI agents to interact with any WAIS-compatible website via the Python SDK, providing tools for discovery, registration, execution, confirmation, and status checking.
Enables GitHub Copilot (VS Code) to interact with any WAIS-compatible website, providing tools for discovery, registration, execution, confirmation, and status checking.
Enables LangChain agents to interact with any WAIS-compatible website via the Python SDK, providing tools for discovery, registration, execution, confirmation, and status checking.
Enables OpenAI's ChatGPT and SDK to interact with any WAIS-compatible website, providing tools for discovery, registration, execution, confirmation, and status checking.
Click 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., "@wais-mcpdiscover actions on serphub.deeger.io"
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.
wais-mcp
Universal MCP server for WAIS (Web Agent Interaction Standard) — 5 generic tools that work with any WAIS-compatible site.
Works with Claude, ChatGPT, Gemini, Cursor, Windsurf, VS Code Copilot, and any MCP-compatible client.
Tools
Tool | Description |
| Fetch a site's |
| Register at a site using SD-JWT selective disclosure |
| Execute any action (search, subscribe, purchase, etc.) |
| Confirm high-risk actions or complete payments (402 flow) |
| Check account status, plan, and credits |
Quick Start
pip install wais-mcp
wais-mcp initThe setup wizard will ask you to pick your provider (Claude, ChatGPT, Cursor, etc.), choose project or global scope, and enter your API key. It writes the correct config file automatically.
Manual Setup by Provider
If you prefer to configure manually, all providers use the same wais-mcp command — only the config file location and format differ.
Claude Desktop
File: claude_desktop_config.json
{
"mcpServers": {
"wais": {
"command": "wais-mcp",
"env": {
"PLATFORM_URL": "https://pod.deeger.io",
"WAIS_API_KEY": "<your-api-key>"
}
}
}
}Claude Code
File: .mcp.json (project root) or ~/.claude/settings.json (global)
{
"mcpServers": {
"wais": {
"command": "wais-mcp",
"env": {
"PLATFORM_URL": "https://pod.deeger.io",
"WAIS_API_KEY": "<your-api-key>"
}
}
}
}ChatGPT Desktop
Requires Developer Mode: Settings > Advanced Settings > Developer Mode.
File locations:
macOS:
~/Library/Application Support/ChatGPT/mcp-server-config.jsonWindows:
%APPDATA%\OpenAI\ChatGPT\mcp-server-config.jsonLinux:
~/.config/ChatGPT/mcp-server-config.json
{
"mcpServers": {
"wais": {
"command": "wais-mcp",
"env": {
"PLATFORM_URL": "https://pod.deeger.io",
"WAIS_API_KEY": "<your-api-key>"
}
}
}
}Restart ChatGPT after saving.
Gemini CLI
File: ~/.gemini/settings.json (global) or .gemini/settings.json (project)
{
"mcpServers": {
"wais": {
"command": "wais-mcp",
"env": {
"PLATFORM_URL": "https://pod.deeger.io",
"WAIS_API_KEY": "<your-api-key>"
}
}
}
}Cursor
File: .cursor/mcp.json (project) or ~/.cursor/mcp.json (global)
{
"mcpServers": {
"wais": {
"command": "wais-mcp",
"env": {
"PLATFORM_URL": "https://pod.deeger.io",
"WAIS_API_KEY": "<your-api-key>"
}
}
}
}Windsurf
File: ~/.codeium/windsurf/mcp_config.json
Or open from Windsurf: click MCPs icon in Cascade panel > Configure.
{
"mcpServers": {
"wais": {
"command": "wais-mcp",
"env": {
"PLATFORM_URL": "https://pod.deeger.io",
"WAIS_API_KEY": "<your-api-key>"
}
}
}
}VS Code (GitHub Copilot)
File: .vscode/mcp.json (project) or via Command Palette: MCP: Open User Configuration (global)
{
"servers": {
"wais": {
"type": "stdio",
"command": "wais-mcp",
"env": {
"PLATFORM_URL": "https://pod.deeger.io",
"WAIS_API_KEY": "<your-api-key>"
}
}
}
}Note: VS Code uses
serversinstead ofmcpServers, and requires thetypefield.
Usage without MCP (Python SDK)
For custom agents, scripts, or any Python code — no MCP client needed:
import asyncio
from wais_mcp import WAISClient
async def main():
client = WAISClient(api_key="your-api-key")
# 1. Discover what the site offers
site = await client.discover("https://serphub.deeger.io")
print(site.name, site.list_action_ids())
# 2. Register (shares only required claims via SD-JWT)
await client.register(site)
# 3. Execute actions
result = await client.execute(site, "search", {"query": "python"})
print(result)
# 4. Confirm high-risk actions (if 402 returned)
# result = await client.confirm(site, challenge_id)
# 5. Check account status
status = await client.status(site)
print(status)
asyncio.run(main())Works with OpenAI SDK, LangChain, CrewAI, or any Python agent framework.
How It Works
Discover — Fetches
/.well-known/agents.jsonfrom a siteRegister — Shares only required claims via SD-JWT selective disclosure
Execute — Handles tokens, DPoP, endpoint resolution, and async polling automatically
Confirm — Polls for completion after 402 confirmation challenges
Status — Check credits and plan info
All authentication (PoD tokens, DPoP proofs) is handled transparently.
Configuration
Env Var | Default | Description |
|
| WAIS Provider URL |
| (keychain fallback on macOS) | API key from provider dashboard |
Development
pip install -e ".[dev]"License
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/deegerhq/wais-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server