streamable-httpMITupdated 6mo ago
LLM presets and MCP for Svelte 5 and SvelteKit. Visit the site at svelte-llm.stanislav.garden.
What can you do with svelte llm mcp?
svelte-llm
LLM presets and MCP for Svelte 5 and SvelteKit. Visit the site at svelte-llm.stanislav.garden.
MCP Endpoint
This service provides an MCP (Model Context Protocol) endpoint for use with AI assistants:
- Streamable HTTP (Claude Desktop and most other clients):
https://svelte-llm.stanislav.garden/mcp/mcp - SSE (Older clients that don't support Streamable):
https://svelte-llm.stanislav.garden/mcp/sse
Setup
- Create a
.envfile with the content:GITHUB_TOKEN= DB_URL=postgres://admin:admin@localhost:5432/db - Create a Classic GitHub token. It must have
public_repopermissions. - Enter this in the .env file.
- Run
docker-compose up - Run:
nvm use
npm i
npm run dev
- Run database migrations: visit http://localhost:5173/api/migrate in your browser after starting the dev server.
You can also visit http://localhost:5173/admin to see all the "hidden" endpoints (default password = "secret")
Debug MCP
NODE_TLS_REJECT_UNAUTHORIZED=0 NODE_OPTIONS="--insecure-http-parser" npx @modelcontextprotocol/inspector
You can also use GitHub Copilot in Agent mode to try the agent locally, see .vscode/mcp.json for info on how that works.
Misc
OG image from https://dynamic-og-image-generator.vercel.app/
Install
Add svelte llm mcp to your client. Pick the one you use.
claude mcp add --transport http svelte-llm-mcp https://svelte-llm.stanislav.garden/mcp/mcpcodex mcp add svelte-llm-mcp --url https://svelte-llm.stanislav.garden/mcp/mcp{
"mcpServers": {
"svelte-llm-mcp": {
"url": "https://svelte-llm.stanislav.garden/mcp/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"svelte-llm-mcp": {
"type": "http",
"url": "https://svelte-llm.stanislav.garden/mcp/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"svelte-llm-mcp": {
"url": "https://svelte-llm.stanislav.garden/mcp/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"svelte-llm-mcp": {
"serverUrl": "https://svelte-llm.stanislav.garden/mcp/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation19/25
- Maintenance9/25
- Trust13/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 199 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Sep 11, 2025 |