mcp-ts-template 2.2.8 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  <div align="center">
7
7
 
8
- [![Version](https://img.shields.io/badge/Version-2.2.8-blue.svg?style=flat-square)](./CHANGELOG.md) [![MCP Spec](https://img.shields.io/badge/MCP%20Spec-2025--06--18-8A2BE2.svg?style=flat-square)](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/docs/specification/2025-06-18/changelog.mdx) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.18.2-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Status](https://img.shields.io/badge/Status-Stable-brightgreen.svg?style=flat-square)](https://github.com/cyanheads/mcp-ts-template/issues) [![TypeScript](https://img.shields.io/badge/TypeScript-^5.9.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.2.23-blueviolet.svg?style=flat-square)](https://bun.sh/) [![Code Coverage](https://img.shields.io/badge/Coverage-87.74%25-brightgreen.svg?style=flat-square)](./coverage/lcov-report/)
8
+ [![Version](https://img.shields.io/badge/Version-2.3.0-blue.svg?style=flat-square)](./CHANGELOG.md) [![MCP Spec](https://img.shields.io/badge/MCP%20Spec-2025--06--18-8A2BE2.svg?style=flat-square)](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/docs/specification/2025-06-18/changelog.mdx) [![MCP SDK](https://img.shields.io/badge/MCP%20SDK-^1.18.2-green.svg?style=flat-square)](https://modelcontextprotocol.io/) [![License](https://img.shields.io/badge/License-Apache%202.0-orange.svg?style=flat-square)](./LICENSE) [![Status](https://img.shields.io/badge/Status-Stable-brightgreen.svg?style=flat-square)](https://github.com/cyanheads/mcp-ts-template/issues) [![TypeScript](https://img.shields.io/badge/TypeScript-^5.9.3-3178C6.svg?style=flat-square)](https://www.typescriptlang.org/) [![Bun](https://img.shields.io/badge/Bun-v1.2.23-blueviolet.svg?style=flat-square)](https://bun.sh/) [![Code Coverage](https://img.shields.io/badge/Coverage-87.74%25-brightgreen.svg?style=flat-square)](./coverage/lcov-report/)
9
9
 
10
10
  </div>
11
11
 
package/dist/worker.js CHANGED
@@ -44497,7 +44497,7 @@ var ErrorSchema = z.object({
44497
44497
  // package.json
44498
44498
  var package_default = {
44499
44499
  name: "mcp-ts-template",
44500
- version: "2.2.7",
44500
+ version: "2.2.8",
44501
44501
  mcpName: "io.github.cyanheads/mcp-ts-template",
44502
44502
  description: "The definitive, production-grade template for building powerful and scalable Model Context Protocol (MCP) servers with TypeScript, featuring built-in observability (OpenTelemetry), declarative tooling, robust error handling, and a modular, DI-driven architecture.",
44503
44503
  main: "dist/index.js",
@@ -51923,7 +51923,7 @@ class ErrorHandler {
51923
51923
  }
51924
51924
  }
51925
51925
  }
51926
- // src/services/llm-providers/openRouterProvider.ts
51926
+ // src/services/llm/providers/openrouter.provider.ts
51927
51927
  class OpenRouterProvider {
51928
51928
  rateLimiter;
51929
51929
  config;
@@ -52356,7 +52356,7 @@ WhisperProvider = __legacyDecorateClassTS([
52356
52356
  ])
52357
52357
  ], WhisperProvider);
52358
52358
 
52359
- // src/services/speech/index.ts
52359
+ // src/services/speech/core/SpeechService.ts
52360
52360
  function createSpeechProvider(config2) {
52361
52361
  logger.debug(`Creating speech provider: ${config2.provider}`);
52362
52362
  switch (config2.provider) {
@@ -52418,7 +52418,6 @@ class SpeechService2 {
52418
52418
  };
52419
52419
  }
52420
52420
  }
52421
-
52422
52421
  // src/storage/core/StorageService.ts
52423
52422
  function requireTenantId(context) {
52424
52423
  if (!context.tenantId) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mcp-ts-template",
3
- "version": "2.2.8",
3
+ "version": "2.3.0",
4
4
  "mcpName": "io.github.cyanheads/mcp-ts-template",
5
5
  "description": "The definitive, production-grade template for building powerful and scalable Model Context Protocol (MCP) servers with TypeScript, featuring built-in observability (OpenTelemetry), declarative tooling, robust error handling, and a modular, DI-driven architecture.",
6
6
  "main": "dist/index.js",