Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name: release-npm
# ONE-TIME SETUP (npm cannot trust a package that doesn't exist yet):
# 1. Publish v1 manually once: `cd packages/mcp && npm publish`.
# 2. On npmjs.com: package @keeperhub/mcp -> Settings -> Trusted Publisher ->
# GitHub Actions, org "KeeperHub", repo "mcp-client", workflow file "release-npm.yml".
# GitHub Actions, org "KeeperHub", repo "mcp", workflow file "release-npm.yml".

on:
push:
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@keeperhub/mcp",
"version": "0.1.0",
"version": "0.1.1",
"description": "Shared MCP client foundation for KeeperHub agent-framework adapters.",
"author": "KeeperHub",
"keywords": ["keeperhub", "mcp", "model-context-protocol", "workflow", "web3"],
Expand Down
2 changes: 1 addition & 1 deletion packages/mcp/src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export class KeeperHubMcpClient {
this.baseUrl = options.baseUrl ?? DEFAULT_MCP_URL;
this.clientInfo = options.clientInfo ?? {
name: "@keeperhub/mcp",
version: "0.1.0",
version: "0.1.1",
};
this.logger = options.logger ?? console;
this.fetchFn = options.fetchFn ?? fetch;
Expand Down
Loading