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 +1 -1
- package/dist/worker.js +3 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
<div align="center">
|
|
7
7
|
|
|
8
|
-
[](./CHANGELOG.md) [](https://github.com/modelcontextprotocol/modelcontextprotocol/blob/main/docs/specification/2025-06-18/changelog.mdx) [](https://modelcontextprotocol.io/) [](./LICENSE) [](https://github.com/cyanheads/mcp-ts-template/issues) [](https://www.typescriptlang.org/) [](https://bun.sh/) [](./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.
|
|
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
|
|
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/
|
|
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.
|
|
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",
|