Skip to main content
Glama

Google Maps MCP Server

by iceener
interface.ts482 B
/** * Storage interface for MCP session management. * Simplified for Bearer auth (no OAuth token mapping needed). */ export type SessionRecord = { created_at: number; }; /** * Session storage interface for MCP session tracking. */ export interface SessionStore { ensure(sessionId: string): Promise<void>; get(sessionId: string): Promise<SessionRecord | null>; put(sessionId: string, value: SessionRecord): Promise<void>; delete(sessionId: string): Promise<void>; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/iceener/maps-streamable-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server