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

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"
}
}
}
claude_desktop_config.json).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_baseSemantic search across SveltyCMS docs and code via neural vector similarity.
read_source_codeRead the full content of any source file from the SveltyCMS project.
list_directoryList files and folders in a given directory.
get_file_treeGet a recursive tree of the project structure up to a specified depth.
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