tmcp
by rbxwilliams·★ 0·Score 30
JavaScript MCP server providing flight search tools with validation but no backend implementation.
Overview
tmcp is a JavaScript MCP server that implements a flight search interface compatible with Fli. It exposes tools for searching flights and dates, along with prompts for direct flight searches and budget window finding. The server intentionally lacks a backend implementation but validates inputs and returns structured error responses, making it useful for testing MCP contracts while the actual search functionality is still in development.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this when prototyping MCP servers for travel applications or testing MCP client implementations with a simple flight search interface.
When NOT to choose this
Don't choose this for production flight search as the backend is not implemented and the project appears to be in early development stage.
Tools this server exposes
2 tools extracted from the READMEsearch_flightsSearch for available flights based on specified criteria
search_datesSearch for available flight dates for a given route
Comparable tools
Installation
Install via npm:
npm install
npm startOr run in HTTP mode:
npm run start:httpClaude Desktop Configuration
{
"mcpServers": {
"fli": {
"command": "node",
"args": ["/path/to/tmcp/bin/fli-mcp.js"]
}
}
}FAQ
- What is the purpose of the backend not being implemented?
- The project intentionally lacks a backend to focus on implementing and validating the MCP interface structure while keeping it usable.
- How do I test the MCP server?
- Run 'npm test' to execute the test suite or connect via an MCP client with the provided configuration.
Compare tmcp with
Last updated · Auto-generated from public README + GitHub signals.