- Home
- MCP servers
- Customer Onboarding KYC AML
Customer Onboarding KYC AML
- typescript
0
GitHub Stars
typescript
Language
6 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You can run a remote MCP server on Cloudflare that exposes a set of tools to remote clients, connect it from the Cloudflare AI Playground, and link local clients like Claude Desktop to use those tools seamlessly.
How to use
This MCP server is designed for remote tool access over Cloudflare. You can connect to it from the Cloudflare AI Playground to try your tools directly in a browser, or you can wire up local clients to call the server through an HTTP endpoint. Use the hosted URL to discover and run your MCP tools from any MCP client that supports the required protocol.
How to install
Prerequisites you need before installing:
- Node.js and npm installed on your machine
- Access to run commands in your terminal
- A Cloudflare account if you plan to deploy to Cloudflare Workers (optional for local experimentation)
npm create cloudflare@latest -- my-mcp-server --template=cloudflare/ai/demos/remote-mcp-authless
Additional setup and usage notes
Customize your MCP server by adding tools inside the initialization code. In your local project, you can extend the server by defining tools within the init() method of src/index.ts using this.server.tool(...). This lets you expose new capabilities to remote clients.
Connect to Cloudflare AI Playground to experiment with your MCP server. Open the Playground and enter your deployed MCP server URL to start using your tools directly from the web interface.
To use your MCP server from Claude Desktop or other local MCP clients, configure the remote proxy to point at the server’s SSE endpoint. Example configuration:
```json
{
"mcpServers": {
"calculator": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse" // or remote-mcp-server-authless.your-account.workers.dev/sse
]
}
}
}
Restart your client application after saving the config to refresh tool availability.
## Security and considerations
This example demonstrates an authentication-free MCP server deployment for quick experimentation. Be aware that exposing tools without authentication can introduce security risks. Use this setup in trusted environments or for demonstrations only, and consider enabling access controls for production use.