MCP Catalogs
Home

tmcp

by rbxwilliams·0·Score 30

JavaScript MCP server providing flight search tools with validation but no backend implementation.

searchai-llmother
0
Forks
0
Open issues
1 mo ago
Last commit
2d ago
Indexed

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:

you:Testing MCP client implementations with a flight search interface
you:Developing MCP servers with structured error handling
you:Demonstrating Fli-compatible MCP surface implementation
you:What is the purpose of the backend not being implemented?
you:How do I test the MCP server?

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 README
  • search_flights

    Search for available flights based on specified criteria

  • search_dates

    Search for available flight dates for a given route

Comparable tools

fli-mcpflight-mcp-servertravel-api-mcp

Installation

Install via npm:

npm install
npm start

Or run in HTTP mode:

npm run start:http

Claude 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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.