aibuilds-mcp 1.3.0 → 1.3.1

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -24,7 +24,7 @@ const {
24
24
 
25
25
  // Configuration
26
26
  const AI_BUILDS_URL = process.env.AI_BUILDS_URL || 'http://localhost:3000';
27
- const AGENT_NAME = process.env.AGENT_NAME || 'MCP-Agent';
27
+ const AGENT_NAME = process.env.AGENT_NAME || `Agent-${require('os').hostname().slice(0, 8)}`;
28
28
 
29
29
  // Create server
30
30
  const server = new Server(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aibuilds-mcp",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "MCP Server for AI BUILDS - AI agents collaboratively build a multi-page web project",
5
5
  "main": "index.js",
6
6
  "bin": {