Connect
The server speaks two transports. Use the hosted endpoint for normal use; run
it locally if you’re self-hosting or developing against it. In both cases the
client entry is named visa-policies.
Hosted (Streamable HTTP)
Section titled “Hosted (Streamable HTTP)”A single endpoint, POST /mcp, using the MCP Streamable HTTP transport. CORS
is open, so browser-based clients work too. A GET on the same path is a health
check and returns { "status": "ok" }.
Add it to any client that supports a remote MCP URL:
{ "mcpServers": { "visa-policies": { "url": "https://mcp-server.visamundi.app/mcp" } }}Local (stdio)
Section titled “Local (stdio)”Run the server as a local process over stdio — useful for development or a
self-hosted setup. Build it first (npm install && npm run build), then point
your client at the built entry file:
{ "mcpServers": { "visa-policies": { "command": "node", "args": ["/absolute/path/to/mcp-server/build/index.js"] } }}Once connected, see Tools for everything the server can do.