├── .gitignore ├── .prettierrc.json ├── LICENSE ├── dist └── index.js ├── package.json ├── readme.md ├── src ├── McpClient.ts ├── index.ts └── mcp.ts ├── tsconfig.json └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | dist/*d.ts 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-MCP-Server/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-MCP-Server/HEAD/LICENSE -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-MCP-Server/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-MCP-Server/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-MCP-Server/HEAD/readme.md -------------------------------------------------------------------------------- /src/McpClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-MCP-Server/HEAD/src/McpClient.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-MCP-Server/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/mcp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-MCP-Server/HEAD/src/mcp.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-MCP-Server/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bmen25124/SillyTavern-MCP-Server/HEAD/webpack.config.js --------------------------------------------------------------------------------