opengov-mcp-server
Version:
MCP server that enables a client, such as Claude Desktop, to access open government data through Socrata APIs
13 lines (12 loc) • 357 B
TypeScript
/**
* Portal information that can be discovered from the data portal
*/
export interface PortalInfo {
title: string;
url: string;
}
/**
* Fetches the data portal homepage and extracts the title
* This helps provide context about which government entity's data portal we're using
*/
export declare function getPortalInfo(): Promise<PortalInfo>;