refactor: Simplify database configuration instructions and update API endpoint references (#457)

This commit is contained in:
samanhappy
2025-11-30 17:20:01 +08:00
committed by GitHub
parent 7b8d9a7e5a
commit 884870c9de
6 changed files with 42 additions and 155 deletions

View File

@@ -133,7 +133,7 @@ MCPHub 主要功能:
```javascript
// MCPHub 客户端初始化
const mcpClient = new MCPClient({
endpoint: 'https://api.mcphub.io',
endpoint: 'http://localhost:3000',
apiKey: process.env.MCPHUB_API_KEY,
});
```
@@ -142,7 +142,7 @@ const mcpClient = new MCPClient({
```javascript
// MCPHub 客户端初始化
const mcpClient = new MCPClient({
endpoint: 'https://api.mcphub.io',
endpoint: 'http://localhost:3000',
apiKey: process.env.MCPHUB_API_KEY,
});
```