Remote MCP server exposing a 30-source documentation catalog with built-in RAG
Cloudflare Workers · Durable Objects · Vectorizehttps://cfg-mcp.bradycusack.dev/mcp
Supports Streamable HTTP transport. Connect from any MCP-compatible client.
{
"mcpServers": {
"enterprise-rpa-docs": {
"command": "npx",
"args": [
"mcp-remote",
"https://cfg-mcp.bradycusack.dev/mcp"
]
}
}
}
{
"mcp": {
"servers": {
"enterprise-rpa-docs": {
"type": "streamable-http",
"url": "https://cfg-mcp.bradycusack.dev/mcp"
}
}
}
}
npx @modelcontextprotocol/inspector \ https://cfg-mcp.bradycusack.dev/mcp
1. Open playground.ai.cloudflare.com 2. Click Add MCP Server 3. Paste the endpoint URL above
| Tool | Description |
|---|---|
docs_search | Free-text search across all entries by keyword, category, or tag |
docs_get | Retrieve a single documentation entry by ID |
docs_get_url | Get a specific URL from an entry with partial label matching |
docs_list_tags | List all unique tags with entry counts |
docs_list_categories | List all categories and their entries |
docs_get_advisories | Get all advisory notes and warnings across the catalog |
docs_fetch_page | Fetch live content from a catalog URL. Auto-detects PDFs and JS-heavy pages. |
docs_related | Find related entries by shared tags |
docs_index_page | Fetch, chunk, embed, and store a page in Vectorize for RAG. PDF-aware. |
docs_ask | Semantic search against previously indexed content |
docs_pipeline_status | Show content-type breakdown: PDFs, JS-rendered, crawlable, and HTML pages |
| ID | Name | Category | Root URL | Links | Flags |
|---|---|---|---|---|---|
windows-server-2016 |
Windows Server 2016 | infrastructure | learn.microsoft.com | 2 | Crawl |
windows-server-2019 |
Windows Server 2019 | infrastructure | learn.microsoft.com | 2 | Crawl |
ad-group-policy |
Windows Active Directory Group Policy | identity | learn.microsoft.com | 4 | Crawl |
microsoft-dns |
Microsoft DNS | infrastructure | learn.microsoft.com | 3 | Crawl |
netskope-proxy |
Netskope Proxy | security | docs.netskope.com | 5 | Crawl |
azure-virtual-desktop |
Azure Virtual Desktop (VDI) | cloud | learn.microsoft.com | 4 | Crawl |
windows-11-enterprise |
Windows 11 Enterprise | endpoint | learn.microsoft.com | 2 | Crawl |
blue-prism |
Blue Prism 6.5 | rpa | documentation.blueprism.com | 2 | JS Crawl |
blue-prism-67 |
Blue Prism 6.7 | rpa | documentation.blueprism.com | 1 | JS Crawl |
uipath-automation-cloud |
UiPath Automation Cloud | rpa | docs.uipath.com | 4 | JS Crawl |
microsoft-graph-api |
Microsoft Graph API | api | learn.microsoft.com | 5 | JS Crawl |
salesforce-lightning-api |
Salesforce Lightning API | api | developer.salesforce.com | 4 | JS Crawl |
servicenow |
ServiceNow | itsm | www.servicenow.com | 1 | JS Crawl |
entra-id |
Microsoft Entra ID | identity | learn.microsoft.com | 11 | Crawl |
intune |
Microsoft Intune | endpoint | learn.microsoft.com | 11 | JS Crawl |
sec-cybersecurity |
SEC Cybersecurity Rules & Guidance | regulatory | www.sec.gov | 6 | PDF Crawl |
sec-ai |
SEC AI Regulation & Compliance | regulatory | www.sec.gov | 3 | |
finra-cybersecurity |
FINRA Cybersecurity & Technology Governance | regulatory | www.finra.org | 6 | Crawl |
finra-ai |
FINRA AI & Generative AI Guidance | regulatory | www.finra.org | 4 | |
ffiec-it-handbook |
FFIEC IT Examination Handbook | regulatory | ithandbook.ffiec.gov | 5 | JS Crawl |
nydfs-cybersecurity |
NYDFS Cybersecurity Regulation (23 NYCRR 500) | regulatory | www.dfs.ny.gov | 1 | Crawl |
gao-ai-financial |
GAO: AI in Financial Services (2025) | regulatory | www.gao.gov | 1 | |
nist-ai-rmf |
NIST AI Risk Management Framework | regulatory | www.nist.gov | 3 | PDF JS Crawl |
togaf-standard |
TOGAF Standard (10th Edition) | enterprise-architecture | pubs.opengroup.org | 5 | Crawl |
togaf-adm |
TOGAF Architecture Development Method (ADM) | enterprise-architecture | pubs.opengroup.org | 4 | Crawl |
togaf-content-governance |
TOGAF Architecture Content & Governance | enterprise-architecture | pubs.opengroup.org | 2 | Crawl |
togaf-practitioners-guide |
TOGAF Practitioners' Approach to ADM | enterprise-architecture | pubs.opengroup.org | 1 | Crawl |
togaf-series-guides |
TOGAF Series Guides & Library | enterprise-architecture | www.opengroup.org | 3 | |
togaf-archimate |
ArchiMate Specification | enterprise-architecture | pubs.opengroup.org | 1 | Crawl |
togaf-world-class-ea |
World-Class EA White Paper (Banking Case Study) | enterprise-architecture | pubs.opengroup.org | 1 |
PDF requires PDF text extraction JS requires Playwright browser rendering Crawl subpage crawling enabled
| Category | Entries | # |
|---|---|---|
| infrastructure | windows-server-2016, windows-server-2019, microsoft-dns |
3 |
| identity | ad-group-policy, entra-id |
2 |
| security | netskope-proxy |
1 |
| cloud | azure-virtual-desktop |
1 |
| endpoint | windows-11-enterprise, intune |
2 |
| rpa | blue-prism, blue-prism-67, uipath-automation-cloud |
3 |
| api | microsoft-graph-api, salesforce-lightning-api |
2 |
| itsm | servicenow |
1 |
| regulatory | sec-cybersecurity, sec-ai, finra-cybersecurity, finra-ai, ffiec-it-handbook, nydfs-cybersecurity, gao-ai-financial, nist-ai-rmf |
8 |
| enterprise-architecture | togaf-standard, togaf-adm, togaf-content-governance, togaf-practitioners-guide, togaf-series-guides, togaf-archimate, togaf-world-class-ea |
7 |
This server includes a two-step retrieval-augmented generation pipeline powered by Workers AI and Cloudflare Vectorize:
docs_index_page — fetches a catalog URL, strips HTML, chunks the text,
generates embeddings via @cf/baai/bge-base-en-v1.5, and upserts vectors
into Vectorize. Handles PDFs and dynamic pages automatically.docs_ask — embeds your question, queries Vectorize for the top-k
most relevant chunks, and returns them with source attribution.A companion Node.js CLI handles pages the Worker can't fetch via HTTP: JavaScript-rendered SPAs, complex PDFs, and full documentation tree crawling.