MCP ExplorerExplorer

Vilnius Transport Mcp Server

@sarunasdaujotison 10 months ago
1 MIT
FreeCommunity
AI Systems
MCP server providing Vilnius public transport data access for LLMs.

Overview

What is Vilnius Transport Mcp Server

Vilnius Transport MCP Server is an implementation of the Model Context Protocol (MCP) that provides access to Vilnius public transport data for Large Language Models (LLMs). It enhances LLM capabilities by integrating real-time transport data.

Use cases

Use cases include answering user queries about public transport routes and stops, providing real-time updates on transport availability, and assisting in navigation within Vilnius using public transport.

How to use

To use the Vilnius Transport MCP Server, integrate it into your Claude development environment by adding the specified configuration to your claude_desktop_config.json file. You can run the server and client using the provided command lines.

Key features

Key features include the ability to search for public transport stops by name and find the closest stop to given coordinates. The server maintains consistent tool interfaces and allows LLMs to access real-time data.

Where to use

Vilnius Transport MCP Server can be used in applications that require real-time public transport information, such as travel planning apps, chatbots, and other LLM-based services that interact with transport data.

Content

Vilnius Transport MCP Server

A Model Context Protocol (MCP) server implementation that provides Vilnius public transport data access capabilities to Large Language Models (LLMs). This project demonstrates how to extend LLM capabilities with real-time transport data using the MCP standard.

The Model Context Protocol (MCP) is a standard that enables Large Language Models (LLMs) to securely access external tools and data. MCP allows LLMs to:

  • Access real-time or local data
  • Call external functions claude_desktop_config.json
  • Interact with system resources
  • Maintain consistent tool interfaces

This project implements an MCP server that provides Vilnius public transport data tools to LLMs, enabling them to answer queries about public transport stops and routes.

The server exposes the following MCP tools:

  • find_stops: Search for public transport stops by name
  • find_closest_stop: Find the closest public transport stop to given coordinates

To add the MCP server to your Claude development environment, add the following configuration to your claude_desktop_config.json file:

{
  "mcpServers": {
    "vilnius_transport": {
      "command": "uv",
      "args": [
        "--directory",
        "path/vilnius-transport-mcp-server/src/vilnius_transport_mcp",
        "run",
        "transport.py"
      ]
    }
  }
}

Note: Make sure to adjust the directory path to match your local installation.

To run the client:

uv run client.py path/src/vilnius_transport_mcp/transport.py

Tools

No tools

Comments

Recommend MCP Servers

View All MCP Servers