RedTrack MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@RedTrack MCP Serverget conversions for the past week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
RedTrack MCP Server
A stateless Model Context Protocol (MCP) server that exposes RedTrack attribution data via two endpoints and can be deployed with one click on Railway.
Endpoints
Method | Path | Purpose |
GET | /manifest | Returns MCP manifest (tools description) |
POST | /run | Executes a tool (e.g., |
Example Run Payload
{
"tool": "get_conversions",
"input": {
"startDate": "2025-07-01",
"endDate": "2025-07-08"
}
}Related MCP server: @crisog/railway-mcp-server
Quick Start (local test)
npm install
REDTRACK_KEY=YOUR_KEY node server.mjsVisit http://localhost:3000/manifest.
One-Click Deploy on Railway
Fork or push this repo to GitHub.
Click the Railway template link below or create a new project → “Deploy from GitHub”.
Add env vars:
REDTRACK_KEY– your RedTrack API key.
Deployment finishes and exposes a public HTTPS URL.
IDE Configuration Snippet
Add this server in your IDE’s MCP settings:
{
"mcpServers": {
"redtrack": {
"url": "https://<your-subdomain>.up.railway.app/mcp",
"type": "http"
}
}
}The IDE will request /mcp for the handshake, then /mcp/run for tool execution.
Key Files for Senior Developer Review
Share these 6 files (all under 10) so a senior dev can understand and extend the service:
File | Purpose |
| Express bootstrap, routing, aliases, JSON-RPC handling |
| Thin RedTrack API client and tool dispatcher |
| In-memory MCP manifest with tool definitions |
| Dependencies ( |
| Project overview, deployment & IDE instructions (this file) |
| Ignore |
No other local assets are required; everything else is generated at runtime.
This server cannot be deployed
Maintenance
Related MCP Connectors
Hosted MCP server for Google Ads and LinkedIn Ads analysis.
MCP server for querying and analyzing data from ad platforms, analytics tools, and spreadsheets
MCP server connecting AI agents to non-custodial staking data across 130+ networks.
A paid remote MCP for AI SDK MCP gateway registry, built to return verdicts, receipts, usage logs, a
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA simple hello world MCP server with a greeting tool, deployable on Railway.25,948 npmMIT
- AlicenseNot gradedqualityDmaintenanceUnofficial MCP server for Railway that enables managing Railway infrastructure through natural language, including projects, services, deployments, environments, variables, templates, domains, volumes, observability, integrations, networking, and workflows.64 npm2MIT
- AlicenseNot gradedqualityDmaintenanceAn MCP server that exposes the Railway API as tools for Claude. Manage Railway projects, services, deployments, variables, environments, and domains directly from Claude.16 npmMIT
- FlicenseBqualityDmaintenanceA Model Context Protocol (MCP) server that gives Claude (and other MCP-compatible AI tools) full access to your Railway.app infrastructure. Deploy, manage services, check logs, configure environment variables — all through natural conversation.3010 npm-