Knowledge Base + MCP Edge Function — Devops
DevOpsRAG-powered knowledge base with built-in MCP server. Connect to Claude Desktop, Cursor, or any MCP client. Ingest docs, chat, and search via MCP tools.
Edge function Knowledge Base + MCP RAG-powered knowledge base with built-in MCP server. Connect to Claude Desktop, Cursor, or any MCP client. Ingest docs, chat, and search via MCP tools.. Deployed on Cloudflare Workers — zero cold starts, globally distributed. Mount it via your Aerostack workspace to call it from any AI agent.
npx aerostack add aerostack/knowledge-mcp Use with AI Assistants
MCPConnect Claude, Cursor, or any MCP-compatible client — then call this function by slug
① Add MCP Server
Add this once — access all Aerostack functions from your AI tool.
{
"mcpServers": {
"aerostack": {
"url": "https://mcp.aerostack.dev",
"type": "http"
}
}
} ② Call this function
Ask your AI to use the call_function tool with this slug:
call_function({
slug: "knowledge-mcp",
args: {}
}) Knowledge Base + MCP Server
Full knowledge base with a built-in Model Context Protocol server. Connect directly from Claude Desktop or Cursor.
Endpoints
| Method | Path | Description |
|---|---|---|
| POST | /ingest | Upload content to knowledge base |
| POST | /chat | Ask questions with RAG context |
| POST | /search | Semantic search |
| GET | /.well-known/mcp.json | MCP server manifest |
| POST | /mcp | MCP JSON-RPC handler |
| GET | /health | Status check |
MCP Tools
search_knowledge— search the knowledge baseask_question— ask a question with AI-generated answer
Metadata
Tags
Build and publish your own functions
Write a TypeScript function, deploy it to the edge, and share it with thousands of developers — in minutes.
More Devops Functions
Browse Devops Functions →Semantic Search
by @aerostack
Natural language search over any content. Ingest documents, search by meaning not keywords. Returns ranked results with relevance scores.
Multi-Model Router
by @aerostack
Route AI requests to different models based on task type. Configure routing rules, set fallbacks, compare responses across models side-by-side.
OpenAI Chat Proxy
by @aerostack
A zero-config proxy for OpenAI /v1/chat/completions with streaming passthrough and CORS support. Replace the API key placeholder and deploy instantly — free public URL included.
Frequently asked questions
What does the Knowledge Base + MCP function do? +
Knowledge Base + MCP is a serverless edge function for devops automation written in cloudflare-worker. Deploy it to Cloudflare Workers via your Aerostack workspace.
How do I deploy the Knowledge Base + MCP function? +
Install the Aerostack CLI and run: ```bash aerostack deploy function @aerostack/knowledge-mcp ``` It will be live on Cloudflare Workers in seconds.
What runtime does Knowledge Base + MCP use? +
Knowledge Base + MCP runs on cloudflare-worker on the Cloudflare Workers edge runtime — zero cold starts, globally distributed.
Can I customise the Knowledge Base + MCP function? +
Yes. Fork the function from your Aerostack dashboard, modify the source, and redeploy. All changes are version-controlled.