Knowledge AI

Server Offline Core built: Apr 28, 06:08 AM

Intelligent
Knowledge Core

The hosted agentic memory for the SveltyCMS ecosystem. Connect your remote AI agents to your project's neural search engine.

SveltyCMS Intelligent Knowledge Core Hero

Real-time Retrieval

High-speed vector search serving all apps. One core serves the entire monorepo with millisecond responses.

Ecosystem Driven

Built-in Model Context Protocol support. Unlocks professional-grade context for any MCP-compatible AI agent.

Static Wisdom

Pre-indexed memory shipped to the cloud. Optimized for remote retrieval with zero GPU overhead on the server.

Connect Your Agents

The Knowledge Core is accessible via SSE (Server-Sent Events). Follow the guides below to integrate it into your development workflow.

Claude / Zed / VS Code

Best for developers wanting AI assistance with full project context.

Add this to your MCP configuration file:

{
  "mcpServers": {
    "sveltycms": {
      "url": "https://mcp.sveltycms.com/mcp"
    }
  }
}
1
Open your config (e.g., claude_desktop_config.json).
2
Paste the JSON block above and restart your AI client.

Custom Bots & SDKs

Perfect for building automated agents or custom CI/CD memory tools.

import { SSEClientTransport } from "@modelcontextprotocol/sdk/client/sse.js";

const transport = new SSEClientTransport(
  new URL("https://mcp.sveltycms.com/mcp")
);
// Connect and interact with tools...

Available Tools

All tools are read-only. Your agent can explore the SveltyCMS codebase but cannot modify anything.

search_knowledge_base

Semantic search across SveltyCMS docs and code via neural vector similarity.

query · category (code|docs|meta|external) · limit
read_source_code

Read the full content of any source file from the SveltyCMS project.

filePath (e.g. src/widgets/index.ts)
list_directory

List files and folders in a given directory.

dirPath (relative directory path)
get_file_tree

Get a recursive tree of the project structure up to a specified depth.

depth (default: 3)

Safe & Read-Only

This MCP server is completely read-only — no write tools exist. Your agent can explore the SveltyCMS codebase, search documentation, and read source files, but it cannot modify, delete, or create anything.

Sensitive paths are blocked: .git, node_modules, .env, config, logs