agenthub-multiagent-mcp 1.1.1 → 1.1.2

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
@@ -24,7 +24,7 @@ npm install -g agenthub-multiagent-mcp
24
24
  ### Public Staging Server
25
25
 
26
26
  A staging server is available for testing:
27
- - **URL:** `https://agenthub.krishi.ai`
27
+ - **URL:** `http://109.123.246.254:8787`
28
28
  - **API Key:** Contact [@thelord810](https://github.com/thelord810) for access
29
29
 
30
30
  ## Configuration
@@ -40,7 +40,7 @@ Add to your Claude Code MCP settings (`~/.claude/claude_desktop_config.json` or
40
40
  "command": "npx",
41
41
  "args": ["-y", "agenthub-multiagent-mcp"],
42
42
  "env": {
43
- "AGENTHUB_URL": "https://agenthub.krishi.ai",
43
+ "AGENTHUB_URL": "http://109.123.246.254:8787",
44
44
  "AGENTHUB_API_KEY": "your-api-key-here"
45
45
  }
46
46
  }
package/dist/index.js CHANGED
@@ -23,7 +23,7 @@ let currentAgentId = AGENTHUB_AGENT_ID;
23
23
  // Create MCP server
24
24
  const server = new Server({
25
25
  name: "agenthub",
26
- version: "1.1.1",
26
+ version: "1.1.2",
27
27
  }, {
28
28
  capabilities: {
29
29
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agenthub-multiagent-mcp",
3
- "version": "1.1.1",
3
+ "version": "1.1.2",
4
4
  "description": "MCP server for AgentHub multi-agent communication",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/index.ts CHANGED
@@ -35,7 +35,7 @@ let currentAgentId = AGENTHUB_AGENT_ID;
35
35
  const server = new Server(
36
36
  {
37
37
  name: "agenthub",
38
- version: "1.1.1",
38
+ version: "1.1.2",
39
39
  },
40
40
  {
41
41
  capabilities: {