Ahmed1262005/mcp-chart-server
3.1
If you are the rightful owner of mcp-chart-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The MCP Chart Server is a standalone server configured for SSE transport, optimized for deployment in serverless environments like Vercel.
MCP Chart Server Deployment
This is a standalone MCP Chart Server configured for SSE transport, designed to work with Vercel serverless environments.
Quick Deploy to Railway
- Click:
- Connect this folder as the source
- Railway will auto-detect and deploy
- Copy the deployed URL (e.g.,
https://your-app.railway.app)
Manual Deployment
npm install
npm start
The server runs on the port specified by $PORT environment variable (Railway sets this automatically).
Use in Your Chat App
Update your chat API to use SSE transport:
const mcpClient = await experimental_createMCPClient({
type: 'sse',
url: 'https://your-mcp-chart-server.railway.app/sse',
});
Alternative: Deploy to Render/Fly.io
The same package.json works on any platform that supports Node.js services.