Integration Guide
Apply for Token
Apply for the corresponding type of authentication Token on the official website:
Notes:
- With a User Token, the data scope is limited to your own palm. When registering a palm, you need to use the userID registered on the official website. Suitable for personal identity verification scenarios.
- With an API Key, the data scope covers all palms. You can register palms under any user ID. Suitable for application development serving multiple users.
Configure mcp.json
Add the following configuration to your Agent's mcp.json (example):
{
"mcpServers": {
"palm-kyc-community-mcp-server": {
"isActive": true,
"name": "palm-kyc-community-mcp-server",
"type": "streamable-http",
"url": "https://open.intl.palm.tencent.com/palm/mcp",
"headers": {
"X-MCP-Namespace": "palm-kyc-community",
"Authorization": "Bearer [Token obtained from https://palm.tencent.com/developer/api-keys]"
},
"timeout": 60
}
}
}
Replace the placeholder in
Authorizationwith the real Token you obtained from the official website.