Agent Gateway
This site supports the Model Context Protocol (MCP). Connect to programmatically access all content, search across knowledge domains, and query author expertise in BIM/CAD.
Quick Start
- Endpoint
- https://botforge.cc/api/mcp
- Transport
- Streamable HTTP
- Server
- personal-site-content v1.0.0
- Manifest
- https://botforge.cc/agent/manifest.json
1. Initialize Connection
{
"jsonrpc": "2.0",
"method": "initialize",
"params": {
"protocolVersion": "2025-03-26",
"capabilities": {},
"clientInfo": {
"name": "your-agent",
"version": "1.0.0"
}
},
"id": 1
}2. Call a Tool
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "search_content",
"arguments": {
"query": "BIM implementation",
"limit": 5
}
},
"id": 2
}Tools (7)
search_contentCross-type unified search across blog, projects, and knowledge base
query (string), types? (blog|projects|knowledge)[], limit? (number)
search_postsSearch blog posts with optional category filter
query (string), category? (bim|cad|industry|career), limit? (number)
recommend_articlesSemantic article recommendations for a topic
topic (string), limit? (number)
get_post_contentFetch full blog post content by slug
slug (string)
get_project_detailFetch full project details by slug
slug (string)
get_expertiseQuery author expertise in a specific domain (BIM, CAD, Revit, etc.)
domain (string)
list_categoriesList all blog categories with descriptions
(none)
Resources (7)
blog://postsAll published blog posts (JSON)blog://posts/{slug}Single blog post (Markdown)projects://listAll projects (JSON)projects://detail/{slug}Single project (Markdown)site://authorAuthor profile (JSON)site://servicesConsulting services (JSON)site://aboutSite description (Markdown)Prompt Templates (3)
summarize_expertiseGenerate author expertise summary
focus? (string)
recommend_articlesCurated article recommendations for topic + audience
topic (string), audience? (string)
explain_serviceExplain consulting services with context
service_id? (string), context? (string)
Alternative Access
Not using MCP? These endpoints provide content in simpler formats:
/llms.txtLLM Content Index/llms-full.txtFull Content Dump/feed.xmlRSS Feed/sitemap.xmlSitemap/.well-known/ai-agent.jsonAgent Discovery/agent/manifest.jsonMCP ManifestDiscovery Signals
Every HTTP response from this site includes these headers for automatic MCP discovery:
Link: </api/mcp>; rel="service"; title="MCP Content Server" Link: </agent>; rel="agent-guide" # AI agents also receive: X-Agent-Protocol: MCP/1.0; endpoint=/api/mcp; guide=/agent; manifest=/agent/manifest.json