Connect
Subscribe or connect programmatically
Use RSS if you want update polling in a feed reader. Use MCP if you want an AI client to search, read, and reason over the published library through a structured interface.
The public MCP endpoint is read-only and intended for AI clients, agent tooling, and remote MCP integrations that can talk to an HTTP endpoint.
Endpoint
https://www.ai-redteam.com/mcp
Transport
Streamable HTTP
Setup: add a remote MCP server in your client, point it at the endpoint above, and select Streamable HTTP if your client distinguishes between MCP transports.
Example remote server definition
{
"name": "ai-redteam",
"type": "http",
"url": "https://www.ai-redteam.com/mcp"
}
Client configuration formats vary. If your MCP client expects different field names, keep the same endpoint and choose the client’s HTTP-based remote MCP option.
What RSS Exposes
- Published updates across the full library
- Topic-specific feeds for narrower subscriptions
- Titles, dates, summaries, categories, and source references
What MCP Exposes
- Profile, topic, latest, featured, and per-insight resources
- Search, latest-item, topic-overview, and insight lookup tools
- Prompt templates and argument completions for AI clients
Use OpenClaw’s native MCP server configuration for remote Streamable HTTP servers. Exact file locations and commands vary by install, but the server entry should point to the public endpoint and use the Streamable HTTP transport.
Example CLI shape
openclaw mcp set ai-redteam '{"url":"https://www.ai-redteam.com/mcp","transport":"streamable-http"}'
Example config shape
{
"mcpServers": {
"ai-redteam": {
"url": "https://www.ai-redteam.com/mcp",
"transport": "streamable-http"
}
}
}
- Add the server definition through OpenClaw’s MCP command or config file.
- Restart the relevant OpenClaw runtime or gateway if your setup does not reload MCP config automatically.
- List or inspect MCP servers and confirm that the AI Red Team tools are discovered.
- If your runtime adapter does not surface remote tools, switch to the plugin bridge below.
A community OpenClaw MCP integration plugin exists specifically to bridge remote HTTP MCP servers into OpenClaw. Use this path if you need a practical way to connect to the public endpoint now.
Plugin config sketch
{
"plugins": {
"entries": {
"mcp-integration": {
"enabled": true,
"config": {
"enabled": true,
"servers": {
"ai-redteam": {
"enabled": true,
"transport": "http",
"url": "https://www.ai-redteam.com/mcp"
}
}
}
}
}
}
}
- Install the plugin into your OpenClaw extensions/plugins area.
- Point the plugin at the MCP endpoint above.
- Restart OpenClaw and use the plugin’s unified MCP tool surface to inspect available tools and call them.
This route depends on a third-party plugin rather than native OpenClaw support.