Skip to content

Commit 5df5a69

Browse files
authored
Bump release version and update JS SDK dependencies (#14)
* Bump version to 0.0.4 * Bump JS SDK version to 0.0.4 * Update code to match 0.0.4 JS SDK (removed unused option)
1 parent 8a113cc commit 5df5a69

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,6 @@ const mcpdClient = new McpdClient({
289289
apiEndpoint: config.mcpdAddr,
290290
apiKey: config.mcpdApiKey,
291291
healthCacheTtl: 10,
292-
serverCacheTtl: 60,
293292
});
294293
```
295294

package-lock.json

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mozilla-ai/mcpd-proxy",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "MCP server proxy for mcpd daemon",
55
"main": "./dist/index.mjs",
66
"types": "./dist/index.d.ts",
@@ -54,7 +54,7 @@
5454
],
5555
"dependencies": {
5656
"@modelcontextprotocol/sdk": "^1.24.0",
57-
"@mozilla-ai/mcpd": "^0.0.3"
57+
"@mozilla-ai/mcpd": "^0.0.4"
5858
},
5959
"devDependencies": {
6060
"@eslint/js": "^9.37.0",

src/server.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,6 @@ export function createMcpServer(config: Config): Server {
289289
apiEndpoint: config.mcpdAddr,
290290
apiKey: config.mcpdApiKey,
291291
healthCacheTtl: 10,
292-
serverCacheTtl: 60,
293292
});
294293

295294
const server = new Server(

0 commit comments

Comments
 (0)