Accessibility Mobility Context Router
This MCP server helps people with disabilities plan accessible trips by fusing calendar events, transit accessibility data, venue info, and weather into a context package for AI assistants.
README
Accessibility Mobility Context Router - MCP Server
๐ฏ The Idea
Problem: People with disabilities face significant challenges when planning trips. Standard navigation apps don't account for:
- Elevator/escalator outages in transit systems that block accessible routes
- Venue accessibility information (wheelchair access, audio guides, tactile paths, etc.)
- Weather conditions that affect mobility (rain, snow, extreme temperatures)
- The need for extra buffer time for accessible travel
- Integration with calendar events to proactively plan trips
- Real-time accessibility barriers that can disrupt travel plans
Solution: An MCP (Model Context Protocol) server that fuses multiple data sources to provide people with disabilities a comprehensive, accessibility-first context package for trip planning. Instead of just "how to get there," it answers "how to get there safely and accessibly."
Key Innovation: By combining calendar intent (next meeting), real-time transit accessibility data (elevator/escalator outages), venue accessibility tags (OpenStreetMap), weather risks, and route planning, we create a context package that gives AI assistants everything they need to provide informed, accessibility-aware guidance.
Impact: This transforms trip planning from a multi-step, error-prone process into a single question: "How do I get to my next meeting?" The system automatically considers accessibility barriers, suggests alternatives, and provides evidence-linked recommendations.
๐ Who This Helps
This MCP server benefits people across the accessibility spectrum:
- Wheelchair Users: Real-time elevator/escalator outage alerts, venue wheelchair accessibility verification, accessible route planning with buffer time
- Blind and Visually Impaired: Detailed route descriptions, alternative route options when primary paths are blocked, weather conditions that affect navigation
- Mobility Impairments: Accessible transit options, venue accessibility information, weather-aware planning for conditions that affect mobility
- People with Chronic Conditions: Buffer time recommendations, weather risk assessment, alternative routes when primary options are unavailable
- Elderly Travelers: Comprehensive accessibility information, clear route alternatives, proactive barrier detection
The system's context package provides structured, evidence-backed information that AI assistants can adapt to each user's specific needs, whether they require wheelchair-accessible routes, detailed verbal descriptions, or weather-sensitive planning.
๐ What This MCP Server Does
This MCP server is a specialized tool for AI assistants (like Claude) that helps people with disabilities plan accessible trips. When you ask "How do I get to my next meeting?", the server:
- Fetches your next calendar event (title, time, location) from Google Calendar via ICS feed
- Finds multiple route candidates (transit, walking, driving) using Google Maps Directions API
- Checks for elevator/escalator outages on NYC MTA transit routes that could block accessible paths
- Verifies venue accessibility (wheelchair access, accessibility features) using OpenStreetMap Overpass API
- Assesses weather risks around travel time using OpenWeather API
- Calculates optimal departure time with configurable buffer minutes
- Fuses everything into a compact context package with citations and evidence
The result is a structured JSON package containing:
- Highlights: 5 key bullets summarizing route, accessibility alerts, venue access, weather, and timing
- Alternatives: Backup route options if the primary route has issues
- Citations: Links to source data (maps, transit status, weather forecasts)
- Metadata: Event details, origin/destination, sources used
This context package enables AI assistants to provide natural, evidence-backed answers like:
"Take the Q train from Times Square to 86th St (20 min). Leave by 3:40 PM to arrive by 4:00 PM with a 20-minute buffer. Note: There's an elevator outage at 57th St stationโconsider the alternative route via 96th St. The Met is wheelchair accessible. Light rain expectedโbring an umbrella."
๐ ๏ธ Available Tools
The MCP server exposes two tools and one resource:
Tools
1. ask
Purpose: Get a concise, natural-language answer about how to reach your next meeting.
Parameters:
question(required, string): Your question, e.g., "How can I reach my next meeting?"origin(optional, string): Starting address. If omitted, usesHOME_ADDRESSfrom config.buffer_minutes(optional, integer, default: 20): Extra time buffer in minutes for accessible travel.
Returns: A text response with key highlights and recommendations, plus the full context package.
Example Request:
{
"jsonrpc": "2.0",
"id": "1",
"method": "tools/call",
"params": {
"name": "ask",
"arguments": {
"question": "How can I reach my next meeting?",
"buffer_minutes": 20
}
}
}
Example Response:
{
"jsonrpc": "2.0",
"id": "1",
"result": {
"content": [
{
"type": "text",
"text": "- Take Q train from Times Sq-42 St to 86 St (20 min)\n- Elevator outage at 57th St station - consider alternative route\n- The Met is wheelchair accessible\n- Light rain expected around arrival time - bring an umbrella\n- Leave by 3:40 PM to arrive by 4:00 PM (20 min buffer)\n- Alternative: Take 1 train to 96th St, then walk (25 min)"
},
{
"type": "text",
"text": "{\"context\":{\"query_intent\":\"route_to_event\",\"sources_used\":[\"directions\",\"gtfs_rt_elevators\",\"osm_overpass\",\"openweather\"],\"event\":{\"title\":\"Museum Visit\",\"start_time_iso\":\"2025-11-08T16:00:00-05:00\",\"location_text\":\"The Met, 1000 5th Ave, New York, NY\"},\"origin\":{\"label\":\"Home\",\"address\":\"Times Square, New York, NY\"},\"highlights\":[{\"type\":\"route_summary\",\"text\":\"Take Q train from Times Sq-42 St to 86 St (20 min)\",\"citations\":[\"https://www.google.com/maps/dir/?saddr=Times+Square%2C+New+York%2C+NY&daddr=The+Met%2C+1000+5th+Ave%2C+New+York%2C+NY\"]},{\"type\":\"accessibility_alert\",\"text\":\"Elevator outage at 57th St station\",\"citations\":[\"https://api-endpoint.mta.info/Dataservice/mtagtfsfeeds/nyct%2Fnyct_ene.json\"]},{\"type\":\"venue_access\",\"text\":\"The Met is wheelchair accessible\",\"citations\":[\"https://overpass-api.de/api/interpreter\"]},{\"type\":\"weather_risk\",\"text\":\"Light rain expected around arrival time\",\"citations\":[\"https://api.openweathermap.org/data/2.5/forecast\"]},{\"type\":\"buffer_recommendation\",\"text\":\"Leave by 3:40 PM to arrive by 4:00 PM (20 min buffer)\",\"citations\":[]}],\"alternatives\":[{\"summary\":\"Alternative: Take 1 train to 96th St, then walk (25 min)\",\"citations\":[\"https://www.google.com/maps/dir/?saddr=Times+Square%2C+New+York%2C+NY&daddr=The+Met%2C+1000+5th+Ave%2C+New+York%2C+NY\"]}],\"raw_citations\":[\"https://www.google.com/maps/dir/?saddr=Times+Square%2C+New+York%2C+NY&daddr=The+Met%2C+1000+5th+Ave%2C+New+York%2C+NY\",\"https://api-endpoint.mta.info/Dataservice/mtagtfsfeeds/nyct%2Fnyct_ene.json\",\"https://overpass-api.de/api/interpreter\",\"https://api.openweathermap.org/data/2.5/forecast\"],\"token_estimate\":156,\"meta\":{}}}"
}
]
}
}
Note: The response contains two text items:
- First item: A concise bullet-point summary answer
- Second item: A JSON string containing the full
contextobject with completeContextPackagedetails, citations, and metadata
When parsed, the second item yields:
{
"context": {
"query_intent": "route_to_event",
"sources_used": ["directions", "gtfs_rt_elevators", "osm_overpass", "openweather"],
"event": {
"title": "Museum Visit",
"start_time_iso": "2025-11-08T16:00:00-05:00",
"location_text": "The Met, 1000 5th Ave, New York, NY"
},
"origin": {
"label": "Home",
"address": "Times Square, New York, NY"
},
"highlights": [...],
"alternatives": [...],
"raw_citations": [...],
"token_estimate": 156,
"meta": {}
}
}
2. build_context
Purpose: Build the full context package with all details, citations, and alternatives.
Parameters:
origin(optional, string): Starting address. If omitted, usesHOME_ADDRESSfrom config.buffer_minutes(optional, integer, default: 20): Extra time buffer in minutes.
Returns: A JSON string containing the complete ContextPackage object.
Example Request:
{
"jsonrpc": "2.0",
"id": "2",
"method": "tools/call",
"params": {
"name": "build_context",
"arguments": {
"buffer_minutes": 20
}
}
}
Example Response:
{
"jsonrpc": "2.0",
"id": "2",
"result": {
"content": [
{
"type": "text",
"text": "{\"query_intent\":\"route_to_event\",\"sources_used\":[\"directions\",\"gtfs_rt_elevators\",\"osm_overpass\",\"openweather\"],\"event\":{\"title\":\"Museum Visit\",\"start_time_iso\":\"2025-11-08T16:00:00-05:00\",\"location_text\":\"The Met, 1000 5th Ave, New York, NY\"},\"origin\":{\"label\":\"Home\",\"address\":\"Times Square, New York, NY\"},\"highlights\":[{\"type\":\"route_summary\",\"text\":\"Take Q train from Times Sq-42 St to 86 St (20 min)\",\"citations\":[\"https://www.google.com/maps/dir/?saddr=Times+Square%2C+New+York%2C+NY&daddr=The+Met%2C+1000+5th+Ave%2C+New+York%2C+NY\"]},{\"type\":\"accessibility_alert\",\"text\":\"Elevator outage at 57th St station\",\"citations\":[\"https://api-endpoint.mta.info/Dataservice/mtagtfsfeeds/nyct%2Fnyct_ene.json\"]},{\"type\":\"venue_access\",\"text\":\"The Met is wheelchair accessible\",\"citations\":[\"https://overpass-api.de/api/interpreter\"]},{\"type\":\"weather_risk\",\"text\":\"Light rain expected around arrival time\",\"citations\":[\"https://api.openweathermap.org/data/2.5/forecast\"]},{\"type\":\"buffer_recommendation\",\"text\":\"Leave by 3:40 PM to arrive by 4:00 PM (20 min buffer)\",\"citations\":[]}],\"alternatives\":[{\"summary\":\"Alternative: Take 1 train to 96th St, then walk (25 min)\",\"citations\":[\"https://www.google.com/maps/dir/?saddr=Times+Square%2C+New+York%2C+NY&daddr=The+Met%2C+1000+5th+Ave%2C+New+York%2C+NY\"]}],\"raw_citations\":[\"https://www.google.com/maps/dir/?saddr=Times+Square%2C+New+York%2C+NY&daddr=The+Met%2C+1000+5th+Ave%2C+New+York%2C+NY\",\"https://api-endpoint.mta.info/Dataservice/mtagtfsfeeds/nyct%2Fnyct_ene.json\",\"https://overpass-api.de/api/interpreter\",\"https://api.openweathermap.org/data/2.5/forecast\"],\"token_estimate\":156,\"meta\":{}}"
}
]
}
}
Note: The response contains a JSON string. When parsed, it yields a ContextPackage object with the following structure:
{
"query_intent": "route_to_event",
"sources_used": [
"directions",
"gtfs_rt_elevators",
"osm_overpass",
"openweather"
],
"event": {
"title": "Museum Visit",
"start_time_iso": "2025-11-08T16:00:00-05:00",
"location_text": "The Met, 1000 5th Ave, New York, NY"
},
"origin": {
"label": "Home",
"address": "Times Square, New York, NY"
},
"highlights": [
{
"type": "route_summary",
"text": "Take Q train from Times Sq-42 St to 86 St (20 min)",
"citations": ["https://www.google.com/maps/dir/..."]
},
{
"type": "accessibility_alert",
"text": "Elevator outage at 57th St station",
"citations": ["https://api-endpoint.mta.info/..."]
},
{
"type": "venue_access",
"text": "The Met is wheelchair accessible",
"citations": ["https://overpass-api.de/..."]
},
{
"type": "weather_risk",
"text": "Light rain expected around arrival time",
"citations": ["https://api.openweathermap.org/..."]
},
{
"type": "buffer_recommendation",
"text": "Leave by 3:40 PM to arrive by 4:00 PM (20 min buffer)",
"citations": []
}
],
"alternatives": [
{
"summary": "Alternative: Take 1 train to 96th St, then walk (25 min)",
"citations": ["https://www.google.com/maps/dir/..."]
}
],
"raw_citations": [
"https://www.google.com/maps/dir/...",
"https://api-endpoint.mta.info/...",
"https://overpass-api.de/...",
"https://api.openweathermap.org/..."
],
"token_estimate": 156,
"meta": {}
}
Resources
context/last
Purpose: Access the last generated context package.
URI: context/last
Returns: The most recent ContextPackage as JSON.
Example Request:
{
"jsonrpc": "2.0",
"id": "3",
"method": "resources/read",
"params": {
"uri": "context/last"
}
}
Example Response:
{
"jsonrpc": "2.0",
"id": "3",
"result": {
"contents": [
{
"type": "text",
"text": "{\n \"query_intent\": \"route_to_event\",\n \"sources_used\": [\"directions\", \"gtfs_rt_elevators\", \"osm_overpass\", \"openweather\"],\n \"event\": {\n \"title\": \"Museum Visit\",\n \"start_time_iso\": \"2025-11-08T16:00:00-05:00\",\n \"location_text\": \"The Met, 1000 5th Ave, New York, NY\"\n },\n \"origin\": {\n \"label\": \"Home\",\n \"address\": \"Times Square, New York, NY\"\n },\n \"highlights\": [\n {\n \"type\": \"route_summary\",\n \"text\": \"Take Q train from Times Sq-42 St to 86 St (20 min)\",\n \"citations\": [\"https://www.google.com/maps/dir/?saddr=Times+Square%2C+New+York%2C+NY&daddr=The+Met%2C+1000+5th+Ave%2C+New+York%2C+NY\"]\n },\n {\n \"type\": \"accessibility_alert\",\n \"text\": \"Elevator outage at 57th St station\",\n \"citations\": [\"https://api-endpoint.mta.info/Dataservice/mtagtfsfeeds/nyct%2Fnyct_ene.json\"]\n },\n {\n \"type\": \"venue_access\",\n \"text\": \"The Met is wheelchair accessible\",\n \"citations\": [\"https://overpass-api.de/api/interpreter\"]\n },\n {\n \"type\": \"weather_risk\",\n \"text\": \"Light rain expected around arrival time\",\n \"citations\": [\"https://api.openweathermap.org/data/2.5/forecast\"]\n },\n {\n \"type\": \"buffer_recommendation\",\n \"text\": \"Leave by 3:40 PM to arrive by 4:00 PM (20 min buffer)\",\n \"citations\": []\n }\n ],\n \"alternatives\": [\n {\n \"summary\": \"Alternative: Take 1 train to 96th St, then walk (25 min)\",\n \"citations\": [\"https://www.google.com/maps/dir/?saddr=Times+Square%2C+New+York%2C+NY&daddr=The+Met%2C+1000+5th+Ave%2C+New+York%2C+NY\"]\n }\n ],\n \"raw_citations\": [\n \"https://www.google.com/maps/dir/?saddr=Times+Square%2C+New+York%2C+NY&daddr=The+Met%2C+1000+5th+Ave%2C+New+York%2C+NY\",\n \"https://api-endpoint.mta.info/Dataservice/mtagtfsfeeds/nyct%2Fnyct_ene.json\",\n \"https://overpass-api.de/api/interpreter\",\n \"https://api.openweathermap.org/data/2.5/forecast\"\n ],\n \"token_estimate\": 156,\n \"meta\": {}\n}"
}
]
}
}
Note: The response contains a formatted JSON string of the last generated ContextPackage. If no context has been built yet, it returns an empty object {}.
๐ฆ Setup Instructions
Prerequisites
- Python 3.9 or higher
- Virtual environment tool (recommended:
uvorvenv) - (Optional) API keys for enhanced functionality (see below)
Step 1: Clone and Navigate
cd D:\Datathon
Step 2: Create Virtual Environment
Using uv (recommended):
# Install uv if not already installed
# Windows PowerShell:
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
# Create virtual environment
uv venv
# Activate (Windows PowerShell)
.\.venv\Scripts\activate
Using venv:
python -m venv .venv
# Activate (Windows PowerShell)
.\.venv\Scripts\activate
Step 3: Install Dependencies
# Using uv
uv pip install -r requirements.txt
# Or using pip
pip install -r requirements.txt
Step 4: Configure Environment Variables
Create a .env file in the project root:
# Required: Set your home address (origin for trips)
HOME_ADDRESS=Times Square, New York, NY
# Optional: Default city code
DEFAULT_CITY=nyc
# Optional: Google Calendar ICS URL (private read-only feed)
# Get this from: Google Calendar โ Settings โ Your Calendar โ Integrate Calendar โ "Secret address in iCal format"
GOOGLE_CALENDAR_ICS_URL=https://calendar.google.com/calendar/ical/your_secret_hash/basic.ics
# Optional: Google Maps API Key (for live directions)
GOOGLE_MAPS_API_KEY=your_google_maps_api_key_here
# Optional: OpenWeather API Key (for weather forecasts)
OPENWEATHER_API_KEY=your_openweather_api_key_here
# Optional: MTA API Key (not required - MTA JSON feeds are public)
MTA_API_KEY=
# Optional: Mock mode (auto-enabled if API keys missing)
MOCK_MODE=false
# Optional: Request timeout in seconds
REQUEST_TIMEOUT_SECONDS=3.0
# Optional: Weather units (metric or imperial)
WEATHER_UNITS=metric
Note: The server works in mock mode if API keys are missing, providing deterministic demo data. This is perfect for testing and demos.
Step 5: Run the MCP Server
For stdio mode (used by Claude Desktop):
python -m app.mcp_server
The server will wait for JSON-RPC messages on stdin and respond on stdout.
For REST API mode (optional):
uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
๐ Connecting to Claude Desktop
To use this MCP server with Claude Desktop:
-
Locate Claude Desktop config file:
- Windows:
%APPDATA%\Claude\claude_desktop_config.json - Or:
C:\Users\<YourUsername>\AppData\Roaming\Claude\claude_desktop_config.json
- Windows:
-
Edit or create the config file:
{
"mcpServers": {
"mobility": {
"command": "D:\\Datathon\\.venv\\Scripts\\python.exe",
"args": ["-m", "app.mcp_server"],
"workingDirectory": "D:\\Datathon",
"env": {
"PYTHONPATH": "D:\\Datathon",
"PYTHONUNBUFFERED": "1",
"HOME_ADDRESS": "Times Square, New York, NY",
"DEFAULT_CITY": "nyc",
"MOCK_MODE": "false"
}
}
}
}
Important:
- Use forward slashes or escaped backslashes (
\\) in paths - Set
PYTHONPATHto your project root - Set
PYTHONUNBUFFERED=1for proper stdio communication - Add any environment variables you need in the
envsection
-
Restart Claude Desktop completely
-
Test in Claude: Ask "How do I get to my next meeting?" or "Use the ask tool to help me plan my route"
๐๏ธ Architecture
app/
โโโ mcp_server.py # MCP server entry point (stdio JSON-RPC)
โโโ main.py # FastAPI REST API (optional)
โโโ config.py # Settings and runtime state
โโโ models/
โ โโโ schemas.py # Pydantic models (ContextPackage, etc.)
โโโ services/
โโโ calendar.py # Google Calendar ICS integration
โโโ directions.py # Google Maps Directions API
โโโ geocode.py # Address geocoding (Google/Nominatim)
โโโ transit.py # NYC MTA elevator/escalator outages
โโโ osm.py # OpenStreetMap venue accessibility
โโโ weather.py # OpenWeather API integration
โโโ fusion.py # Route scoring and context fusion
โโโ formatter.py # Context package building
โโโ llm.py # Gemini integration (optional)
โโโ utils/
โโโ http.py # Shared HTTP client with timeouts
Data Flow
- Input: User asks "How do I get to my next meeting?" via MCP tool
- Calendar: Fetch next event (title, time, location) from ICS feed
- Geocoding: Resolve location text to lat/lng coordinates
- Parallel Data Fetching:
- Directions API โ Route candidates
- MTA API โ Elevator/escalator outages
- OSM Overpass โ Venue wheelchair tag
- OpenWeather โ Weather forecast
- Fusion: Score routes, identify best option, generate context bullets
- Output: Structured context package with highlights, alternatives, citations
Key Design Decisions
- Mock Mode: Graceful degradation when API keys are missing (deterministic demo data)
- Timeout Protection: All HTTP requests have configurable timeouts (default 3s)
- Citation Links: Every piece of information includes source links for verification
- Buffer Time: Configurable extra time for accessible travel (default 20 minutes)
- Error Handling: Server continues processing even if individual data sources fail
๐ Context Package Structure
The ContextPackage returned by tools includes:
{
"query_intent": "route_to_event",
"sources_used": [
"directions",
"gtfs_rt_elevators",
"osm_overpass",
"openweather"
],
"event": {
"title": "Museum Visit",
"start_time_iso": "2025-11-08T16:00:00-05:00",
"location_text": "The Met, 1000 5th Ave, New York, NY"
},
"origin": {
"label": "Home",
"address": "Times Square, New York, NY"
},
"highlights": [
{
"type": "route_summary",
"text": "Take Q train from Times Sq-42 St to 86 St (20 min)",
"citations": ["https://www.google.com/maps/dir/..."]
},
{
"type": "accessibility_alert",
"text": "Elevator outage at 57th St station",
"citations": ["https://api-endpoint.mta.info/..."]
},
{
"type": "venue_access",
"text": "The Met is wheelchair accessible",
"citations": ["https://overpass-api.de/..."]
},
{
"type": "weather_risk",
"text": "Light rain expected around arrival time",
"citations": ["https://api.openweathermap.org/..."]
},
{
"type": "buffer_recommendation",
"text": "Leave by 3:40 PM to arrive by 4:00 PM (20 min buffer)",
"citations": []
}
],
"alternatives": [
{
"summary": "Alternative: Take 1 train to 96th St, then walk (25 min)",
"citations": ["https://www.google.com/maps/dir/..."]
}
],
"raw_citations": [
"https://www.google.com/maps/dir/...",
"https://api-endpoint.mta.info/..."
]
}
๐ API Keys (Optional)
The server works without API keys (mock mode), but for production use:
Google Calendar ICS URL
- How to get: Google Calendar โ Settings โ Your Calendar โ Integrate Calendar โ Copy "Secret address in iCal format"
- Why: Fetches your next event automatically
Google Maps API Key
- How to get: Google Cloud Console โ Enable "Directions API" โ Create API key
- Why: Provides live route planning with transit, walking, and driving options
OpenWeather API Key
- How to get: OpenWeatherMap โ Sign up โ Get API key
- Why: Weather forecasts around travel time
MTA API Key
- Not required: MTA JSON feeds are public (no key needed)
- Why: Real-time elevator/escalator outage data for NYC transit
๐งช Testing
Manual Testing (stdio mode)
The MCP server communicates via JSON-RPC over stdio. You can test it manually:
python -m app.mcp_server
Then send JSON-RPC messages (the server will respond).
REST API Testing (optional)
If you run the FastAPI server:
uvicorn app.main:app --host 0.0.0.0 --port 8000
Test endpoints:
GET /health- Health checkPOST /config/home- Set home addressPOST /build_context- Build context packageGET /context/last- Get last context package
๐ฏ Use Cases
- Proactive Trip Planning: "How do I get to my next meeting?" โ Automatic route planning with accessibility checks
- Accessibility Alerts: Real-time notifications about elevator outages that affect your route
- Venue Verification: Check if a destination is wheelchair accessible before you go
- Weather-Aware Planning: Know if weather will affect your travel
- Alternative Routes: Get backup options if your primary route has issues
๐ License
MIT
๐ค Contributing
This is a production-ready MCP server for accessibility-aware trip planning. The codebase is structured for easy extension:
- Add new transit systems (currently NYC MTA)
- Integrate additional data sources
- Enhance route scoring algorithms
- Add support for other calendar providers
๐ Troubleshooting
Server won't start
- Check Python version:
python --version(needs 3.9+) - Verify dependencies:
pip list - Check
PYTHONPATHis set correctly
Tools not working in Claude
- Verify MCP server config JSON syntax
- Check Claude Desktop logs:
%APPDATA%\Claude\Logs\ - Ensure
PYTHONUNBUFFERED=1is set in config - Restart Claude Desktop after config changes
No calendar events found
- Verify
GOOGLE_CALENDAR_ICS_URLis correct - Check that your calendar has upcoming events with locations
- Server falls back to mock event if ICS fails
Mock mode always enabled
- Set
MOCK_MODE=falsein.envor config - Provide at least one API key (Google Maps recommended)
๐ Additional Resources
- MCP Protocol Specification
- Google Calendar ICS Format
- NYC MTA Real-Time Feeds
- OpenStreetMap Overpass API
๐ฎ Future Improvements
This MVP provides a solid foundation for accessibility-aware trip planning. Potential future enhancements include:
- Expanded Transit Coverage: Support for additional transit systems beyond NYC MTA (e.g., other major cities' transit APIs)
- Enhanced Accessibility Data: Integration with crowdsourced accessibility platforms and venue-specific accessibility databases
- Personalization: User preference profiles for accessibility needs, preferred transit modes, and buffer time preferences
- Advanced Route Intelligence: Machine learning-based route scoring and predictive outage detection using historical patterns
- Multi-Calendar Support: Integration with additional calendar providers (Outlook, Apple Calendar, etc.)
These improvements would enhance the MCP server's capabilities while building on the current accessibility-first foundation.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.