- Home
- MCP servers
- MCP Document Translator
MCP Document Translator
- typescript
0
GitHub Stars
typescript
Language
4 months ago
First Indexed
3 weeks 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 that exposes tools you configure and access it from clients like the Cloudflare AI Playground or Claude Desktop. This server runs without authentication in the example setup, and you can customize it by adding tools you need for your workflows. It supports connecting over HTTP for remote access or via a local stdio proxy for integration with your MCP clients.
How to use
Connect to your remote MCP server from an MCP client to access your tools. Use the Cloudflare AI Playground to experiment without setting up a local client by providing your deployed server URL and selecting your tools from the playground interface.
To use the server from a local client or IDE, you can connect through a stdio proxy. For example, you can wire Claude Desktop to your remote server by configuring the MCP connection to point at the server’s SSE endpoint.
Here are the concrete connection configurations you can use in your client configuration: the HTTP-based remote server URL and the local stdio proxy configuration that runs via npx.
{
"type": "http",
"name": "remote_authless_mcp",
"url": "https://remote-mcp-server-authless.your-account.workers.dev/sse",
"args": []
}
Then you can also connect via the stdio proxy by invoking the MCP proxy command from your client configuration. This uses the mcp-remote proxy to forward commands to your remote server.
{
"type": "stdio",
"name": "calculator",
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/sse"
]
}
Available tools
calculator
A calculator tool exposed through the MCP server for remote computation requests.