Skip to content

Commit 5f6d1e1

Browse files
committed
fix: update MCP server URL to chat.pageindex.ai
1 parent 502c7b8 commit 5f6d1e1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ Connect directly to the PageIndex OAuth-enabled MCP server:
9393
"mcpServers": {
9494
"pageindex": {
9595
"type": "http",
96-
"url": "https://mcp.pageindex.ai/mcp"
96+
"url": "https://chat.pageindex.ai/mcp"
9797
}
9898
}
9999
}
@@ -109,7 +109,7 @@ If your MCP client doesn't support HTTP servers directly, you can use [mcp-remot
109109
"mcpServers": {
110110
"pageindex": {
111111
"command": "npx",
112-
"args": ["-y", "mcp-remote", "https://mcp.pageindex.ai/mcp"]
112+
"args": ["-y", "mcp-remote", "https://chat.pageindex.ai/mcp"]
113113
}
114114
}
115115
}

src/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ interface Config {
55
}
66

77
export const CONFIG: Config = {
8-
apiUrl: process.env.PAGEINDEX_API_URL || 'https://mcp.pageindex.ai',
8+
apiUrl: process.env.PAGEINDEX_API_URL || 'https://chat.pageindex.ai',
99
debug: process.env.DEBUG === 'true',
1010
connectionTimeout: parseInt(process.env.CONNECTION_TIMEOUT || '30000', 10),
1111
};

0 commit comments

Comments
 (0)