MCP TMAP Server

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
SK_OPEN_API_APP_KEYYesYour SK open API app key credentials

Schema

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Tools

Functions exposed to the LLM to take actions

NameDescription
publicTransitRoutes

Retrieves public transportation routes from start to destination.

Args: startLon (str): longitude of the starting point (WSG84). startLat (str): latitude of the starting point (WSG84). destLon (str): longitude of the destination (WSG84). destLat (str): latitude of the destination (WSG84). language (int): language of the route; 0 for Korean and 1 for English. searchTime (str, optional): Sets the time for the route to be searched. Used as information to indicate whether transportation is in operation. See [service] in the response for the operation status.

Returns: route information

  • itineraries: route details
    • fare: total fare
    • totalTime: in seconds
    • transferCount:
    • totalWalkDistance: in meters
    • totalDistance: in meters
    • totalWalkTime: in seconds
    • legs: legs in the route
      • distance: in meters
      • sectionTime: in seconds
      • mode: transportation mode
      • route: transportation route
      • start: starting point of the leg
      • end: destination of the leg
fullTextAddressGeocoding

Converts the given address to coordinates (geocoding).

Args address (str): address to convert.

Returns: a list of coordinates

  • newLat: latitude
  • newLon: longitude
  • newLatEntr: latitude of the entrance
  • newLonEntr: longitude of the entrance
ID: lihyob8aeo