Compare commits

..

9 Commits

Author SHA1 Message Date
github-actions[bot]
802b379f7a Version Packages (#208)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-05-22 12:11:32 +02:00
Paolo Ricciuti
fc391d0128 fix: remove restrictive permissions from subagent (#219) 2026-05-22 11:07:01 +02:00
Elliott Johnson
575dcc7d2b chore: Supply chain hardening (#217) 2026-05-22 08:24:32 +02:00
Elliott Johnson
88cea9e539 Revert "chore: Supply chain hardening" (#216) 2026-05-20 08:53:28 -06:00
Elliott Johnson
fdb1bc7370 chore: Supply chain hardening 2026-05-20 08:46:41 -06:00
Tee Ming
5b4d3aa68a docs: fix broken skills link (#211)
Co-authored-by: Paolo Ricciuti <ricciutipaolo@gmail.com>
2026-05-15 21:51:07 +02:00
github-actions[bot]
04c52f2b72 Version Packages (#197)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-05-13 20:51:10 +02:00
Paolo Ricciuti
0ea2a617ef docs: overhaul docs focus on all ai tools (#188)
Co-authored-by: jyc.dev <jycouet@gmail.com>
Co-authored-by: Tee Ming <chewteeming01@gmail.com>
Co-authored-by: Rich Harris <rich.harris@vercel.com>
2026-05-13 20:50:40 +02:00
Paolo Ricciuti
484453e5f8 feat: allow stdio mcp to read the content of the file directly (#198) 2026-05-13 20:26:18 +02:00
28 changed files with 266 additions and 133 deletions

View File

@@ -1,5 +0,0 @@
---
'@sveltejs/mcp': patch
---
fix: handle non call expressions passed to `is_rune`

View File

@@ -1,5 +0,0 @@
---
'@sveltejs/mcp': patch
---
chore: remove db requirement

View File

@@ -13,12 +13,10 @@ jobs:
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup pnpm - name: Setup pnpm
uses: pnpm/action-setup@v5 uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
with:
version: 10.28.2
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0

View File

@@ -13,12 +13,10 @@ jobs:
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup pnpm - name: Setup pnpm
uses: pnpm/action-setup@v5 uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
with:
version: 10.28.2
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0

View File

@@ -1,23 +0,0 @@
name: Publish Any Commit
on: [push, pull_request]
permissions: {}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- run: corepack enable
- uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- run: pnpm dlx pkg-pr-new publish --compact './packages/mcp-stdio' './packages/opencode' --pnpm

View File

@@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Publish to MCP Registry - name: Publish to MCP Registry
working-directory: packages/mcp-stdio working-directory: packages/mcp-stdio

View File

@@ -21,7 +21,7 @@ jobs:
skills: ${{ steps.find-skills.outputs.skills }} skills: ${{ steps.find-skills.outputs.skills }}
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Find all skills - name: Find all skills
id: find-skills id: find-skills
@@ -41,7 +41,7 @@ jobs:
skill: ${{ fromJson(needs.detect-skills.outputs.skills) }} skill: ${{ fromJson(needs.detect-skills.outputs.skills) }}
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Get version from date - name: Get version from date
id: version id: version
@@ -53,7 +53,7 @@ jobs:
zip -r ${{ matrix.skill }}.zip ${{ matrix.skill }}/ zip -r ${{ matrix.skill }}.zip ${{ matrix.skill }}/
- name: Create Release - name: Create Release
uses: softprops/action-gh-release@v2 uses: softprops/action-gh-release@3bb12739c298aeb8a4eeaf626c5b8d85266b0e65 # v2
with: with:
tag_name: ${{ matrix.skill }}-v${{ steps.version.outputs.version }} tag_name: ${{ matrix.skill }}-v${{ steps.version.outputs.version }}
name: ${{ matrix.skill }} v${{ steps.version.outputs.version }} name: ${{ matrix.skill }} v${{ steps.version.outputs.version }}

View File

@@ -25,7 +25,7 @@ jobs:
os: [ubuntu-latest] os: [ubuntu-latest]
steps: steps:
- name: checkout - name: checkout
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with: with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits # This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0 fetch-depth: 0

View File

@@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with: with:
fetch-depth: 0 fetch-depth: 0

View File

@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with: with:
fetch-depth: 0 fetch-depth: 0

View File

@@ -13,12 +13,10 @@ jobs:
steps: steps:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup pnpm - name: Setup pnpm
uses: pnpm/action-setup@v5 uses: pnpm/action-setup@fc06bc1257f339d1d5d8b3a19a8cae5388b55320 # v5
with:
version: 10.28.2
- name: Setup Node.js - name: Setup Node.js
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0

View File

@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with: with:
fetch-depth: 0 fetch-depth: 0

View File

@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v6 uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with: with:
fetch-depth: 0 fetch-depth: 0

1
.npmrc
View File

@@ -1 +0,0 @@
engine-strict=true

View File

@@ -6,6 +6,6 @@ This is the list of available skills provided by the Svelte MCP package. Skills
Skills are available in both the Claude Code plugin (installed via the marketplace) and the OpenCode plugin (`@sveltejs/opencode`). They can also be manually installed in your `.claude/skills` or `.opencode/skills` folder. Skills are available in both the Claude Code plugin (installed via the marketplace) and the OpenCode plugin (`@sveltejs/opencode`). They can also be manually installed in your `.claude/skills` or `.opencode/skills` folder.
You can download the latest skills from the [releases page](https://github.com/sveltejs/ai-tools/releases) of the repo, or find them in the [`plugins/svelte/skills`](https://github.com/sveltejs/ai-tools/tree/main/plugins/svelte/skills) folder. You can download the latest skills from the [releases page](https://github.com/sveltejs/ai-tools/releases) of the repo, or find them in the [`tools/skills`](https://github.com/sveltejs/ai-tools/tree/main/tools/skills) folder.
@include .generated/skills.md @include .generated/skills.md

View File

@@ -3,7 +3,7 @@
"version": "0.0.1", "version": "0.0.1",
"description": "The official Svelte MCP server implementation", "description": "The official Svelte MCP server implementation",
"type": "module", "type": "module",
"packageManager": "pnpm@10.28.2", "packageManager": "pnpm@10.33.4+sha512.1c67b3b359b2d408119ba1ed289f34b8fc3c6873412bec6fd264fbdc82489e510fcbecb9ce9d22dae7f3b76269d8441046014bdca53b9979cd7a561ad631b800",
"scripts": { "scripts": {
"build": "pnpm -r run build", "build": "pnpm -r run build",
"dev": "pnpm --filter @sveltejs/mcp-remote run dev", "dev": "pnpm --filter @sveltejs/mcp-remote run dev",

View File

@@ -1,4 +1,7 @@
/* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable @typescript-eslint/no-explicit-any */
import { writeFileSync, unlinkSync } from 'node:fs';
import { join } from 'node:path';
import { tmpdir } from 'node:os';
import { InMemoryTransport } from '@tmcp/transport-in-memory'; import { InMemoryTransport } from '@tmcp/transport-in-memory';
import { beforeEach, describe, expect, it } from 'vitest'; import { beforeEach, describe, expect, it } from 'vitest';
import { server } from '../../index.js'; import { server } from '../../index.js';
@@ -12,13 +15,18 @@ async function autofixer_tool_call(
is_error = false, is_error = false,
desired_svelte_version = 5, desired_svelte_version = 5,
async = false, async = false,
ctx?: { stdio?: boolean },
) { ) {
const result = await session.callTool('svelte-autofixer', { const result = await session.callTool(
code, 'svelte-autofixer',
desired_svelte_version, {
filename: 'App.svelte', code,
async, desired_svelte_version,
}); filename: 'App.svelte',
async,
},
ctx,
);
expect(result).toBeDefined(); expect(result).toBeDefined();
if (is_error) { if (is_error) {
@@ -146,4 +154,40 @@ describe('svelte-autofixer tool', () => {
'The desired_svelte_version MUST be either 4 or 5 but received "3"', 'The desired_svelte_version MUST be either 4 or 5 but received "3"',
); );
}); });
it('should read file content from path when stdio context is true', async () => {
const tmp_file = join(tmpdir(), `svelte-autofixer-test-${Date.now()}.svelte`);
const file_content = `<script>
$state count = 0;
</script>`;
writeFileSync(tmp_file, file_content, 'utf-8');
try {
// with stdio: true, the file is read from disk and parsed, producing issues
const content = await autofixer_tool_call(tmp_file, false, 5, false, { stdio: true });
expect(content.issues.length).toBeGreaterThan(0);
expect(content.suggestions.length).toBeGreaterThan(0);
} finally {
unlinkSync(tmp_file);
}
});
it('should treat file path as code when stdio context is not set', async () => {
const tmp_file = join(tmpdir(), `svelte-autofixer-test-${Date.now()}.svelte`);
const file_content = `<script>
$state count = 0;
</script>`;
writeFileSync(tmp_file, file_content, 'utf-8');
try {
// without stdio context, the path string is treated as raw code (plain text), no issues
const content = await autofixer_tool_call(tmp_file, false, 5, false);
expect(content.issues).toHaveLength(0);
expect(content.suggestions).toHaveLength(0);
} finally {
unlinkSync(tmp_file);
}
});
}); });

View File

@@ -1,33 +1,47 @@
import { basename } from 'node:path'; import { basename } from 'node:path';
import type { SvelteMcp } from '../../index.js'; import { tool } from 'tmcp/utils';
import * as v from 'valibot'; import * as v from 'valibot';
import { add_autofixers_issues } from '../../autofixers/add-autofixers-issues.js';
import { add_compile_issues } from '../../autofixers/add-compile-issues.js'; import { add_compile_issues } from '../../autofixers/add-compile-issues.js';
import { add_eslint_issues } from '../../autofixers/add-eslint-issues.js'; import { add_eslint_issues } from '../../autofixers/add-eslint-issues.js';
import { add_autofixers_issues } from '../../autofixers/add-autofixers-issues.js';
import { icons } from '../../icons/index.js'; import { icons } from '../../icons/index.js';
import { tool } from 'tmcp/utils'; import { type SvelteMcp } from '../../index.js';
const autofixer_schema = v.object({ let cached_schema: ReturnType<typeof get_autofixer_schema> | null = null;
code: v.string(),
desired_svelte_version: v.pipe( function get_autofixer_schema(stdio: boolean) {
v.union([v.string(), v.number()]), let code = v.string();
v.description( if (stdio) {
'The desired svelte version...if possible read this from the package.json of the user project, otherwise use some hint from the wording (if the user asks for runes it wants version 5). Default to 5 in case of doubt.', // we only add the description if we are running in stdio, this saves a few tokens for the remote server
code = v.pipe(
v.string(),
v.description(
"The code to be processed by the autofixer. It can also be a path to a file containing the code. If the file doesn't exists the string will be treated as the code",
),
);
}
return v.object({
code,
desired_svelte_version: v.pipe(
v.union([v.string(), v.number()]),
v.description(
'The desired svelte version...if possible read this from the package.json of the user project, otherwise use some hint from the wording (if the user asks for runes it wants version 5). Default to 5 in case of doubt.',
),
), ),
), async: v.pipe(
async: v.pipe( v.optional(v.boolean()),
v.optional(v.boolean()), v.description(
v.description( 'If true the code is an async component/module and might use await in the markup or top-level awaits in the script tag. If possible check the svelte.config.js/svelte.config.ts to check if the option is enabled otherwise asks the user if they prefer using it or not. You can only use this option if the version is 5.',
'If true the code is an async component/module and might use await in the markup or top-level awaits in the script tag. If possible check the svelte.config.js/svelte.config.ts to check if the option is enabled otherwise asks the user if they prefer using it or not. You can only use this option if the version is 5.', ),
), ),
), filename: v.pipe(
filename: v.pipe( v.optional(v.string()),
v.optional(v.string()), v.description(
v.description( 'The filename of the component if available, it MUST be only the Component name with .svelte or .svelte.ts extension and not the entire path.',
'The filename of the component if available, it MUST be only the Component name with .svelte or .svelte.ts extension and not the entire path.', ),
), ),
), });
}); }
const autofixer_output_schema = v.object({ const autofixer_output_schema = v.object({
issues: v.array(v.string()), issues: v.array(v.string()),
@@ -40,7 +54,7 @@ export async function svelte_autofixer_handler({
desired_svelte_version: desired_svelte_version_unchecked, desired_svelte_version: desired_svelte_version_unchecked,
async, async,
filename: filename_or_path, filename: filename_or_path,
}: v.InferInput<typeof autofixer_schema>) { }: v.InferInput<ReturnType<typeof get_autofixer_schema>>) {
// we validate manually because some clients don't support union in the input schema (looking at you cursor) // we validate manually because some clients don't support union in the input schema (looking at you cursor)
const parsed_version = v.safeParse( const parsed_version = v.safeParse(
v.union([v.literal(4), v.literal(5), v.literal('4'), v.literal('5')]), v.union([v.literal(4), v.literal(5), v.literal('4'), v.literal('5')]),
@@ -110,7 +124,11 @@ export function svelte_autofixer(server: SvelteMcp) {
title: 'Svelte Autofixer', title: 'Svelte Autofixer',
description: description:
'Given a svelte component or module returns a list of suggestions to fix any issues it has. This tool MUST be used whenever the user is asking to write svelte code before sending the code back to the user', 'Given a svelte component or module returns a list of suggestions to fix any issues it has. This tool MUST be used whenever the user is asking to write svelte code before sending the code back to the user',
schema: autofixer_schema, get schema() {
return (
cached_schema ?? (cached_schema = get_autofixer_schema(server.ctx.custom?.stdio ?? false))
);
},
outputSchema: autofixer_output_schema, outputSchema: autofixer_output_schema,
annotations: { annotations: {
title: 'Svelte Autofixer', title: 'Svelte Autofixer',
@@ -129,6 +147,18 @@ export function svelte_autofixer(server: SvelteMcp) {
if (server.ctx.sessionId && server.ctx.custom?.track) { if (server.ctx.sessionId && server.ctx.custom?.track) {
await server.ctx.custom?.track?.(server.ctx.sessionId, 'svelte-autofixer'); await server.ctx.custom?.track?.(server.ctx.sessionId, 'svelte-autofixer');
} }
// we only do this if we know we are running in stdio mode (only stdio pass the context as true)
if (server.ctx.custom?.stdio) {
const [exists_sync, read_file] = await Promise.all([
import('node:fs').then((mod) => mod.existsSync),
import('node:fs/promises').then((mod) => mod.readFile),
]);
if (exists_sync(code)) {
code = await read_file(code, 'utf-8');
}
}
try { try {
const content = await svelte_autofixer_handler({ const content = await svelte_autofixer_handler({
code, code,

View File

@@ -24,6 +24,7 @@ export const server = new McpServer(
}, },
).withContext<{ ).withContext<{
track?: (sessionId: string, event: string, extra?: string) => Promise<void>; track?: (sessionId: string, event: string, extra?: string) => Promise<void>;
stdio?: boolean;
}>(); }>();
export type SvelteMcp = typeof server; export type SvelteMcp = typeof server;

View File

@@ -1,5 +1,15 @@
# @sveltejs/mcp # @sveltejs/mcp
## 0.1.23
### Patch Changes
- feat: allow stdio mcp to read the content of the file directly ([#198](https://github.com/sveltejs/ai-tools/pull/198))
- fix: handle non call expressions passed to `is_rune` ([#201](https://github.com/sveltejs/ai-tools/pull/201))
- chore: remove db requirement ([#196](https://github.com/sveltejs/ai-tools/pull/196))
## 0.1.22 ## 0.1.22
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@sveltejs/mcp", "name": "@sveltejs/mcp",
"version": "0.1.22", "version": "0.1.23",
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",
"mcpName": "dev.svelte/mcp", "mcpName": "dev.svelte/mcp",

View File

@@ -9,7 +9,7 @@
"subfolder": "packages/mcp-stdio", "subfolder": "packages/mcp-stdio",
"source": "github" "source": "github"
}, },
"version": "0.1.22", "version": "0.1.23",
"websiteUrl": "https://svelte.dev/docs/mcp/overview", "websiteUrl": "https://svelte.dev/docs/mcp/overview",
"icons": [ "icons": [
{ {
@@ -25,7 +25,7 @@
{ {
"registryType": "npm", "registryType": "npm",
"identifier": "@sveltejs/mcp", "identifier": "@sveltejs/mcp",
"version": "0.1.22", "version": "0.1.23",
"runtimeHint": "npx", "runtimeHint": "npx",
"transport": { "transport": {
"type": "stdio" "type": "stdio"

View File

@@ -14,7 +14,9 @@ const cli = sade('svelte-mcp');
cli.command('__mcp', '', { default: true }).action(() => { cli.command('__mcp', '', { default: true }).action(() => {
const transport = new StdioTransport(server); const transport = new StdioTransport(server);
transport.listen(); transport.listen({
stdio: true,
});
}); });
cli cli

View File

@@ -1,5 +1,11 @@
# @sveltejs/opencode # @sveltejs/opencode
## 0.1.9
### Patch Changes
- fix: remove restrictive permissions from subagent ([#219](https://github.com/sveltejs/ai-tools/pull/219))
## 0.1.8 ## 0.1.8
### Patch Changes ### Patch Changes

View File

@@ -81,12 +81,7 @@ export const svelte_plugin: Plugin = async (ctx) => {
prompt: agent_data.prompt, prompt: agent_data.prompt,
description: agent_data.description, description: agent_data.description,
permission: { permission: {
bash: 'ask', [`${svelte_mcp_name}_*`]: 'allow',
edit: 'allow',
webfetch: 'ask',
},
tools: {
[`${svelte_mcp_name}_*`]: true,
}, },
}; };

View File

@@ -1,6 +1,6 @@
{ {
"name": "@sveltejs/opencode", "name": "@sveltejs/opencode",
"version": "0.1.8", "version": "0.1.9",
"type": "module", "type": "module",
"license": "MIT", "license": "MIT",
"homepage": "https://github.com/sveltejs/ai-tools#readme", "homepage": "https://github.com/sveltejs/ai-tools#readme",

134
pnpm-lock.yaml generated
View File

@@ -6,9 +6,18 @@ settings:
catalogs: catalogs:
ai: ai:
'@anthropic-ai/sdk':
specifier: ^0.71.0
version: 0.71.2
'@mcp-ui/server':
specifier: ^6.0.0
version: 6.0.0
'@modelcontextprotocol/inspector': '@modelcontextprotocol/inspector':
specifier: ^0.19.0 specifier: ^0.19.0
version: 0.19.0 version: 0.19.0
'@opencode-ai/plugin':
specifier: ^1.1.44
version: 1.1.44
lint: lint:
'@eslint/compat': '@eslint/compat':
specifier: ^2.0.0 specifier: ^2.0.0
@@ -16,12 +25,27 @@ catalogs:
'@eslint/js': '@eslint/js':
specifier: ^9.36.0 specifier: ^9.36.0
version: 9.39.2 version: 9.39.2
'@types/eslint-scope':
specifier: ^8.3.2
version: 8.4.0
'@typescript-eslint/parser': '@typescript-eslint/parser':
specifier: ^8.44.0 specifier: ^8.44.0
version: 8.54.0 version: 8.54.0
'@typescript-eslint/types':
specifier: ^8.44.0
version: 8.54.0
eslint:
specifier: ^9.36.0
version: 9.39.2
eslint-config-prettier: eslint-config-prettier:
specifier: ^10.0.1 specifier: ^10.0.1
version: 10.1.8 version: 10.1.8
eslint-plugin-import:
specifier: ^2.32.0
version: 2.32.0
eslint-plugin-pnpm:
specifier: ^1.3.0
version: 1.5.0
eslint-plugin-svelte: eslint-plugin-svelte:
specifier: ^3.12.5 specifier: ^3.12.5
version: 3.14.0 version: 3.14.0
@@ -37,6 +61,9 @@ catalogs:
svelte-eslint-parser: svelte-eslint-parser:
specifier: ^1.4.0 specifier: ^1.4.0
version: 1.4.1 version: 1.4.1
typescript-eslint:
specifier: ^8.44.0
version: 8.54.0
svelte: svelte:
'@sveltejs/adapter-vercel': '@sveltejs/adapter-vercel':
specifier: ^6.0.0 specifier: ^6.0.0
@@ -54,22 +81,64 @@ catalogs:
specifier: ^4.0.0 specifier: ^4.0.0
version: 4.3.5 version: 4.3.5
tmcp: tmcp:
'@tmcp/adapter-valibot':
specifier: ^0.1.5
version: 0.1.5
'@tmcp/transport-http': '@tmcp/transport-http':
specifier: ^0.8.4 specifier: ^0.8.5
version: 0.8.4 version: 0.8.5
'@tmcp/transport-in-memory':
specifier: ^0.0.6
version: 0.0.6
'@tmcp/transport-stdio':
specifier: ^0.4.2
version: 0.4.2
tmcp: tmcp:
specifier: ^1.19.0 specifier: ^1.19.3
version: 1.19.2 version: 1.19.3
tooling: tooling:
'@changesets/cli':
specifier: ^2.29.7
version: 2.29.8
'@svitejs/changesets-changelog-github-compact':
specifier: ^1.2.0
version: 1.2.0
'@types/estree':
specifier: ^1.0.8
version: 1.0.8
'@types/node': '@types/node':
specifier: ^24.3.1 specifier: ^24.3.1
version: 24.10.9 version: 24.10.9
'@valibot/to-json-schema':
specifier: ^1.5.0
version: 1.5.0
'@vercel/analytics': '@vercel/analytics':
specifier: ^2.0.0 specifier: ^2.0.0
version: 2.0.1 version: 2.0.1
dotenv:
specifier: ^17.2.3
version: 17.2.3
node-resolve-ts:
specifier: ^1.0.2
version: 1.0.2
publint:
specifier: ^0.3.13
version: 0.3.17
sade:
specifier: 1.8.1
version: 1.8.1
ts-blank-space:
specifier: ^0.7.0
version: 0.7.0
tsdown:
specifier: ^0.20.0
version: 0.20.1
typescript: typescript:
specifier: ^5.0.0 specifier: ^5.0.0
version: 5.9.3 version: 5.9.3
valibot:
specifier: ^1.2.0
version: 1.2.0
vite: vite:
specifier: ^7.0.4 specifier: ^7.0.4
version: 7.3.1 version: 7.3.1
@@ -79,6 +148,9 @@ catalogs:
vitest: vitest:
specifier: ^4.0.0 specifier: ^4.0.0
version: 4.0.18 version: 4.0.18
zimmerframe:
specifier: ^1.1.4
version: 1.1.4
importers: importers:
@@ -149,13 +221,13 @@ importers:
version: link:../../packages/mcp-server version: link:../../packages/mcp-server
'@tmcp/transport-http': '@tmcp/transport-http':
specifier: catalog:tmcp specifier: catalog:tmcp
version: 0.8.4(tmcp@1.19.2(typescript@5.9.3)) version: 0.8.5(tmcp@1.19.3(typescript@5.9.3))
'@vercel/analytics': '@vercel/analytics':
specifier: catalog:tooling specifier: catalog:tooling
version: 2.0.1(@sveltejs/kit@2.50.1(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.48.4)(vite@7.3.1(@types/node@24.10.9)(yaml@2.8.2)))(svelte@5.48.4)(typescript@5.9.3)(vite@7.3.1(@types/node@24.10.9)(yaml@2.8.2)))(react@18.3.1)(svelte@5.48.4) version: 2.0.1(@sveltejs/kit@2.50.1(@sveltejs/vite-plugin-svelte@6.2.4(svelte@5.48.4)(vite@7.3.1(@types/node@24.10.9)(yaml@2.8.2)))(svelte@5.48.4)(typescript@5.9.3)(vite@7.3.1(@types/node@24.10.9)(yaml@2.8.2)))(react@18.3.1)(svelte@5.48.4)
tmcp: tmcp:
specifier: catalog:tmcp specifier: catalog:tmcp
version: 1.19.2(typescript@5.9.3) version: 1.19.3(typescript@5.9.3)
devDependencies: devDependencies:
'@eslint/compat': '@eslint/compat':
specifier: catalog:lint specifier: catalog:lint
@@ -225,10 +297,10 @@ importers:
version: 6.0.0(hono@4.11.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zod@4.1.8) version: 6.0.0(hono@4.11.7)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(zod@4.1.8)
'@tmcp/adapter-valibot': '@tmcp/adapter-valibot':
specifier: catalog:tmcp specifier: catalog:tmcp
version: 0.1.5(tmcp@1.19.2(typescript@5.9.3))(valibot@1.2.0(typescript@5.9.3)) version: 0.1.5(tmcp@1.19.3(typescript@5.9.3))(valibot@1.2.0(typescript@5.9.3))
'@tmcp/transport-in-memory': '@tmcp/transport-in-memory':
specifier: catalog:tmcp specifier: catalog:tmcp
version: 0.0.5(tmcp@1.19.2(typescript@5.9.3)) version: 0.0.6(tmcp@1.19.3(typescript@5.9.3))
'@typescript-eslint/parser': '@typescript-eslint/parser':
specifier: catalog:lint specifier: catalog:lint
version: 8.54.0(eslint@9.39.2)(typescript@5.9.3) version: 8.54.0(eslint@9.39.2)(typescript@5.9.3)
@@ -246,7 +318,7 @@ importers:
version: 1.4.1(svelte@5.48.4) version: 1.4.1(svelte@5.48.4)
tmcp: tmcp:
specifier: catalog:tmcp specifier: catalog:tmcp
version: 1.19.2(typescript@5.9.3) version: 1.19.3(typescript@5.9.3)
ts-blank-space: ts-blank-space:
specifier: catalog:tooling specifier: catalog:tooling
version: 0.7.0 version: 0.7.0
@@ -292,14 +364,14 @@ importers:
version: 1.8.1 version: 1.8.1
tmcp: tmcp:
specifier: catalog:tmcp specifier: catalog:tmcp
version: 1.19.2(typescript@5.9.3) version: 1.19.3(typescript@5.9.3)
devDependencies: devDependencies:
'@sveltejs/mcp-server': '@sveltejs/mcp-server':
specifier: workspace:^ specifier: workspace:^
version: link:../mcp-server version: link:../mcp-server
'@tmcp/transport-stdio': '@tmcp/transport-stdio':
specifier: catalog:tmcp specifier: catalog:tmcp
version: 0.4.1(tmcp@1.19.2(typescript@5.9.3)) version: 0.4.2(tmcp@1.19.3(typescript@5.9.3))
'@types/node': '@types/node':
specifier: catalog:tooling specifier: catalog:tooling
version: 24.10.9 version: 24.10.9
@@ -1725,8 +1797,8 @@ packages:
peerDependencies: peerDependencies:
tmcp: ^1.16.3 tmcp: ^1.16.3
'@tmcp/transport-http@0.8.4': '@tmcp/transport-http@0.8.5':
resolution: {integrity: sha512-n/4oIYjHyX5i6LFC3+qlxtc/IIv1xoqLhPVbdA5VYDyUWU6QRBU3+ffMXQuAPs0Q6Z+ZCzcO30V90yRMAxuriQ==} resolution: {integrity: sha512-qQLqiCTtbxtTSswqOn/782df7O57RxI/yLUtCDQ++kHEhbmDUc8glmmtGJ3mrb7yPSPoM5VF2Pc2Q5cA6quzLA==}
peerDependencies: peerDependencies:
'@tmcp/auth': ^0.3.3 || ^0.4.0 '@tmcp/auth': ^0.3.3 || ^0.4.0
tmcp: ^1.18.0 tmcp: ^1.18.0
@@ -1734,13 +1806,13 @@ packages:
'@tmcp/auth': '@tmcp/auth':
optional: true optional: true
'@tmcp/transport-in-memory@0.0.5': '@tmcp/transport-in-memory@0.0.6':
resolution: {integrity: sha512-m8l4+GdCj3NNwVxClnE8fV0yVn5ihpXhIsoOTG3CxeKoC/4H5+HPXeIIb25uSfFt6rccDfqH7DDPjMGDfPtoXA==} resolution: {integrity: sha512-j+xcfQa7ksiIkA/8s3SAsTnM3GeZTd+X8F++Mv/tAT91+UkCzyhemPz0MqW7i1ruxJyIWooOB6JhWCsyF+LvhA==}
peerDependencies: peerDependencies:
tmcp: ^1.17.0 tmcp: ^1.17.0
'@tmcp/transport-stdio@0.4.1': '@tmcp/transport-stdio@0.4.2':
resolution: {integrity: sha512-464x8HNrvjLLtKZsrFWUL13GnBFFtrNoWxnE0rHbcmQSYRqtS8WseWtQCYstj2Vcg9kRlIUVFGDIljGNP4/N4A==} resolution: {integrity: sha512-OLVLJzUXAKsCvenkjPf5ygli9ZcbEv3Lcei/ry+DB4T1NzvDc1oU3m41zYtHhAmbES1h6om3T9f/zonBSDFMRQ==}
peerDependencies: peerDependencies:
tmcp: ^1.16.3 tmcp: ^1.16.3
@@ -3757,8 +3829,8 @@ packages:
resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==} resolution: {integrity: sha512-PSkbLUoxOFRzJYjjxHJt9xro7D+iilgMX/C9lawzVuYiIdcihh9DXmVibBe8lmcFrRi/VzlPjBxbN7rH24q8/Q==}
engines: {node: '>=14.0.0'} engines: {node: '>=14.0.0'}
tmcp@1.19.2: tmcp@1.19.3:
resolution: {integrity: sha512-/AEG/jlzflGKqCKm7GNdhz50VtFlN+3vcnKd+iQJXcHdIPrpCRMolEj57SfgcXcfE2ouX7J6Q05gPKsS2NZhKg==} resolution: {integrity: sha512-plz/TLKNFrdfQN32LjCTN6ULy6pynfGPgHcU7KGCI5dBrxQ9Mub99SmcYuzxEkLjJooQuOD3gosSwZEl1htOtw==}
to-regex-range@5.0.1: to-regex-range@5.0.1:
resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==}
@@ -5410,31 +5482,31 @@ snapshots:
transitivePeerDependencies: transitivePeerDependencies:
- encoding - encoding
'@tmcp/adapter-valibot@0.1.5(tmcp@1.19.2(typescript@5.9.3))(valibot@1.2.0(typescript@5.9.3))': '@tmcp/adapter-valibot@0.1.5(tmcp@1.19.3(typescript@5.9.3))(valibot@1.2.0(typescript@5.9.3))':
dependencies: dependencies:
'@standard-schema/spec': 1.1.0 '@standard-schema/spec': 1.1.0
'@valibot/to-json-schema': 1.5.0(valibot@1.2.0(typescript@5.9.3)) '@valibot/to-json-schema': 1.5.0(valibot@1.2.0(typescript@5.9.3))
tmcp: 1.19.2(typescript@5.9.3) tmcp: 1.19.3(typescript@5.9.3)
valibot: 1.2.0(typescript@5.9.3) valibot: 1.2.0(typescript@5.9.3)
'@tmcp/session-manager@0.2.1(tmcp@1.19.2(typescript@5.9.3))': '@tmcp/session-manager@0.2.1(tmcp@1.19.3(typescript@5.9.3))':
dependencies: dependencies:
tmcp: 1.19.2(typescript@5.9.3) tmcp: 1.19.3(typescript@5.9.3)
'@tmcp/transport-http@0.8.4(tmcp@1.19.2(typescript@5.9.3))': '@tmcp/transport-http@0.8.5(tmcp@1.19.3(typescript@5.9.3))':
dependencies: dependencies:
'@tmcp/session-manager': 0.2.1(tmcp@1.19.2(typescript@5.9.3)) '@tmcp/session-manager': 0.2.1(tmcp@1.19.3(typescript@5.9.3))
esm-env: 1.2.2 esm-env: 1.2.2
tmcp: 1.19.2(typescript@5.9.3) tmcp: 1.19.3(typescript@5.9.3)
'@tmcp/transport-in-memory@0.0.5(tmcp@1.19.2(typescript@5.9.3))': '@tmcp/transport-in-memory@0.0.6(tmcp@1.19.3(typescript@5.9.3))':
dependencies: dependencies:
json-rpc-2.0: 1.7.1 json-rpc-2.0: 1.7.1
tmcp: 1.19.2(typescript@5.9.3) tmcp: 1.19.3(typescript@5.9.3)
'@tmcp/transport-stdio@0.4.1(tmcp@1.19.2(typescript@5.9.3))': '@tmcp/transport-stdio@0.4.2(tmcp@1.19.3(typescript@5.9.3))':
dependencies: dependencies:
tmcp: 1.19.2(typescript@5.9.3) tmcp: 1.19.3(typescript@5.9.3)
'@tsconfig/node10@1.0.12': {} '@tsconfig/node10@1.0.12': {}
@@ -7625,7 +7697,7 @@ snapshots:
tinyrainbow@3.0.3: {} tinyrainbow@3.0.3: {}
tmcp@1.19.2(typescript@5.9.3): tmcp@1.19.3(typescript@5.9.3):
dependencies: dependencies:
'@standard-schema/spec': 1.1.0 '@standard-schema/spec': 1.1.0
json-rpc-2.0: 1.7.1 json-rpc-2.0: 1.7.1

View File

@@ -1,3 +1,16 @@
minimumReleaseAge: 2880
minimumReleaseAgeExclude:
- '@sveltejs/*'
- svelte
- esrap
- devalue
- zimmerframe
- prettier-plugin-svelte
- svelte-check
- esm-env
blockExoticSubdeps: true
engineStrict: true
packages: packages:
- ./packages/* - ./packages/*
- ./apps/* - ./apps/*
@@ -31,11 +44,11 @@ catalogs:
svelte: ^5.47.0 svelte: ^5.47.0
svelte-check: ^4.0.0 svelte-check: ^4.0.0
tmcp: tmcp:
'@tmcp/adapter-valibot': ^0.1.4 '@tmcp/adapter-valibot': ^0.1.5
'@tmcp/transport-http': ^0.8.4 '@tmcp/transport-http': ^0.8.5
'@tmcp/transport-in-memory': ^0.0.5 '@tmcp/transport-in-memory': ^0.0.6
'@tmcp/transport-stdio': ^0.4.0 '@tmcp/transport-stdio': ^0.4.2
tmcp: ^1.19.0 tmcp: ^1.19.3
tooling: tooling:
'@changesets/cli': ^2.29.7 '@changesets/cli': ^2.29.7
'@svitejs/changesets-changelog-github-compact': ^1.2.0 '@svitejs/changesets-changelog-github-compact': ^1.2.0