From 26f87e742e8c3ecd9d6eae6e5b784865543ae303 Mon Sep 17 00:00:00 2001 From: Chris Addams Date: Mon, 15 Jun 2026 12:06:41 +0100 Subject: [PATCH] chore(smithery): add smithery.yaml for Smithery registry listing Declares the server as a local stdio command (npx -y @anythink-cloud/mcp) with no required config, so Smithery can index and launch it. --- smithery.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 smithery.yaml diff --git a/smithery.yaml b/smithery.yaml new file mode 100644 index 0000000..b6b50db --- /dev/null +++ b/smithery.yaml @@ -0,0 +1,14 @@ +# Smithery configuration — https://smithery.ai/docs/build/project-config/smithery.yaml +# Anythink MCP server: runs locally over stdio via the npx wrapper. + +startCommand: + type: stdio + # No configuration or environment variables are required to start the server. + configSchema: + type: object + properties: {} + required: [] + # Returns the command Smithery uses to launch the server on stdio. + commandFunction: |- + (config) => ({ command: 'npx', args: ['-y', '@anythink-cloud/mcp'] }) + exampleConfig: {}