opengov-mcp-server
Version:
MCP server that enables a client, such as Claude Desktop, to access open government data through Socrata APIs
22 lines (21 loc) • 471 B
TypeScript
/**
* Supported data portal platforms
*/
export declare enum PortalPlatform {
UNKNOWN = "unknown",
SOCRATA = "socrata",
ARCGIS = "arcgis",
CKAN = "ckan"
}
/**
* Portal platform detection result
*/
export interface PortalDetectionResult {
platform: PortalPlatform;
baseUrl: string;
domain: string;
}
/**
* Detects the platform of a data portal
*/
export declare function detectPortalPlatform(url: string): Promise<PortalDetectionResult>;