opendata-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OPENDATA_API_KEY | Yes | Your API key (required for write operations). | |
| OPENDATA_BASE_URL | Yes | The base URL of the OpenData API (required at call time). Default: https://api.tryopendata.ai | |
| OPENDATA_LOG_LEVEL | No | Optional: logging level (off|error|info|debug). | info |
| OPENDATA_READ_ONLY | No | Optional: set to 'true' to only register GET tools. | |
| OPENDATA_TIMEOUT_MS | No | Optional: per-request timeout in milliseconds. | 30000 |
| OPENDATA_MAX_ATTEMPTS | No | Optional: total HTTP attempts. | 3 |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_datasets_v1_datasets_getA | GET /v1/datasets (public) — List Datasets — List all datasets with pagination. Returns a lightweight summary of each dataset. Use the individual dataset endpoints to get full details including schema_info and column_metadata. |
| search_datasets_v1_search_getA | GET /v1/search (public) — Search Datasets — Search across all datasets using full-text search. Searches dataset names, descriptions, provider names, and column names. Results are ranked by relevance using PostgreSQL's FTS capabilities. Search Modes:
Query Syntax:
Sort Options:
|
| suggest_datasets_v1_search_suggest_getA | GET /v1/search/suggest (public) — Suggest Datasets — Get autocomplete suggestions for search typeahead. Returns dataset names that start with the given prefix, for use in search input autocomplete. Only returns datasets with status='ready'. Response:
Example:
|
| get_related_datasets_v1_datasets__provider___dataset__related_geA | GET /v1/datasets/{provider}/{dataset}/related (public) — Get Related Datasets — Get related datasets using unified multi-signal scoring. Combines pgvector semantic similarity, join suggestions, and Neo4j graph signals (shared topics, community membership, structural similarity) into a single ranked list. Results are cached in Redis for fast repeat access. Categories:
Gracefully degrades when Neo4j is unavailable (pgvector + join signals only). |
| get_dataset_activity_v1_datasets__provider___dataset__activity_gA | GET /v1/datasets/{provider}/{dataset}/activity (public) — Get Dataset Activity — Get recent activity events for a dataset. Returns system events (enrichment, ingestion, schema changes) in reverse chronological order. Used for the activity feed on dataset pages. |
| list_all_categories_v1_categories_getA | GET /v1/categories (public) — List all categories — List all data categories with dataset counts. Returns categories that have at least one dataset, ordered by dataset count (most popular first). Categories are derived from dataset metadata labels set during LLM enrichment. No authentication required - this is a public endpoint. |
| get_category_detail_v1_categories__slug__getA | GET /v1/categories/{slug} (public) — Get category with datasets — Get category details with paginated datasets. Returns the category metadata along with a paginated list of datasets in that category. Sort options:
No authentication required - this is a public endpoint. |
| discover_datasets_v1_discover_getA | GET /v1/discover (public) — Discover Datasets — Discover datasets optimized for LLM agents. Returns enriched dataset metadata including column schemas, canonical questions, methodology summaries, and quality scores. Requires authentication. Key differences from /search:
|
| list_joinable_v1_datasets__provider___dataset__joinable_getA | GET /v1/datasets/{provider}/{dataset}/joinable (public) — List previewable joinable datasets — Return join targets for the compose/preview UI. Filters out low-signal joins (date-only at low confidence, cross-community). Falls back to a small number of low-signal matches when the filter would produce an empty list so the UI still has something to render. Public endpoint — matches the auth stance of other dataset-detail routes. Returns an empty target list (not 503) when Neo4j is unavailable. |
| compose_preview_v1_datasets__provider___dataset__compose_previewA | POST /v1/datasets/{provider}/{dataset}/compose/preview (auth: Bearer OPENDATA_API_KEY) — Preview a compose/join without saving it — Execute a single-join preview against Kept narrow: exactly one join spec per request. Multi-join composition would compound cardinality risk during preview — we want users to vet each join in isolation before they chain them. Preflight: when the base dataset has more than
|
| compose_download_csv_v1_datasets__provider___dataset__compose_doA | GET /v1/datasets/{provider}/{dataset}/compose/download.csv (public) — Download a composed join as CSV — Stream a composed CSV of Kept narrow for v1: single join, single join column, no computed columns,
no filters. Mirrors the shape of |
| list_provider_datasets_v1_datasets__provider__getC | GET /v1/datasets/{provider} (public) — List Provider Datasets — List all datasets for a provider. |
| get_dataset_meta_v1_datasets__provider___dataset__meta_getA | GET /v1/datasets/{provider}/{dataset}/meta (public) — Get Dataset Meta — Get dataset metadata without data. Returns metadata about the dataset including schema, available views, and query capabilities. Use this endpoint to understand dataset structure before fetching data. |
| get_dataset_sources_v1_datasets__provider___dataset__sources_getA | GET /v1/datasets/{provider}/{dataset}/sources (public) — Get Dataset Sources — List all source URLs for a dataset. For multi-source datasets, returns each source with its description. For aggregator datasets, returns the URL template and variable info. For single-source datasets, returns the single source URL. |
| get_subdataset_meta_v1_datasets__provider___dataset___subdatasetA | GET /v1/datasets/{provider}/{dataset}/{subdataset}/meta (public) — Get Subdataset Meta — Get subdataset metadata without data. Returns metadata about the subdataset including schema and available views. |
| get_dataset_columns_v1_datasets__provider___dataset__columns_getA | GET /v1/datasets/{provider}/{dataset}/columns (public) — Get Dataset Columns — Get column metadata and statistics for a dataset. Returns column names, types, distinct counts, value distributions, and row count. Uses sampling for efficient stats on large datasets. When a view is active (explicitly or via default_view), returns columns as they appear in the view output, including computed and joined columns with proper types. |
| get_dataset_column_detail_v1_datasets__provider___dataset__columA | GET /v1/datasets/{provider}/{dataset}/columns/{column_name} (public) — Get Dataset Column Detail — Get detailed statistics for a single column. Returns full value list (up to 1000) for low-cardinality columns. |
| list_dataset_views_v1_datasets__provider___dataset__views_getA | GET /v1/datasets/{provider}/{dataset}/views (public) — List Dataset Views — List available views for a specific dataset. Returns all views applicable to this dataset, including:
Dataset views take priority over predefined views with the same name. |
| get_dataset_view_v1_datasets__provider___dataset__views__name__gB | GET /v1/datasets/{provider}/{dataset}/views/{name} (public) — Get Dataset View — Get detailed configuration for a specific view on a dataset. Includes all alias definitions, column projections, and lookup configurations for data enrichment. |
| get_dataset_by_path_v1_datasets__provider___dataset__getA | GET /v1/datasets/{provider}/{dataset} (public) — Get Dataset By Path — Get dataset data (flat) or subdataset list (hierarchical). For flat datasets: Returns paginated data with full query support. For hierarchical datasets: Returns list of subdatasets. Metadata is available at GET /v1/datasets/{provider}/{dataset}/meta Format Selection (in priority order):
csv/tsv/xlsx/parquet always return file attachments with the full dataset (size-guarded at MAX_DOWNLOAD_SIZE_BYTES). ?format=json also returns the full dataset as a JSON file; without ?format=json, JSON … |
| export_dataset_as_yaml_v1_datasets__provider___dataset__export_gA | GET /v1/datasets/{provider}/{dataset}/export (public) — Export Dataset As Yaml — Export dataset configuration as YAML. Returns the dataset configuration in dataset.yaml format, suitable for re-importing via the sync command or POST /datasets endpoint. The exported YAML can be used to:
Note: Only exports configuration, not the actual data. |
| get_subdataset_by_path_v1_datasets__provider___dataset___subdataA | GET /v1/datasets/{provider}/{dataset}/{subdataset} (public) — Get Subdataset By Path — Get subdataset with inline data. Returns subdataset metadata with paginated data rows. Pagination:
|
| list_directory_v1_directories_getA | GET /v1/directories (public) — List Directory — List and analyze a web directory. Fetches the directory listing from the provided URL, parses the content to extract file and subdirectory entries, and analyzes the contents to suggest appropriate next actions. The response includes a
Results are cached for 5 minutes to reduce load on remote servers.
Use Args: request: FastAPI request for getting client IP url: URL of the directory to list (must be a valid HTTP/HTTPS URL) refresh: If true, by… |
| list_providers_v1_providers_getB | GET /v1/providers (public) — List Providers — List all data providers with dataset stats. |
| get_provider_v1_providers__provider__getC | GET /v1/providers/{provider} (public) — Get Provider — Get provider details by slug. |
| list_views_v1_views_getA | GET /v1/views (public) — List Views — List all available predefined views. Returns a summary of each view including name, description, available aliases, and default sorting. |
| get_view_v1_views__name__getC | GET /v1/views/{name} (public) — Get View — Get detailed configuration for a specific view. Includes all alias definitions, column projections, and lookup configurations for data enrichment. |
| get_user_activity_v1_users__user_id__activity_getB | GET /v1/users/{user_id}/activity (public) — Get User Activity — Get paginated activity feed for a user. Returns a list of activities (dataset creation, starring, syncing, etc.) ordered by most recent first. |
| list_published_views_by_username_v1_users___username__views_getB | GET /v1/users/@{username}/views (public) — List a user's published views (portfolio) — List published views for a profile portfolio.
|
| follow_user_v1_users__clerk_id__follow_putA | PUT /v1/users/{clerk_id}/follow (auth: Bearer OPENDATA_API_KEY) — Follow a user — Follow |
| unfollow_user_v1_users__clerk_id__follow_deleteA | DELETE /v1/users/{clerk_id}/follow (auth: Bearer OPENDATA_API_KEY) — Unfollow a user — Unfollow |
| get_follow_status_v1_users__clerk_id__follow_status_getA | GET /v1/users/{clerk_id}/follow-status (public) — Check follow status — Return whether the caller is following |
| list_followers_v1_users__clerk_id__followers_getA | GET /v1/users/{clerk_id}/followers (public) — List a user's followers — List users following |
| list_following_v1_users__clerk_id__following_getB | GET /v1/users/{clerk_id}/following (public) — List who a user is following — List users that |
| get_feed_v1_users_me_feed_getB | GET /v1/users/me/feed (public) — Activity feed of followed users — Activity from users the caller follows. |
| get_user_activity_v1_users__clerk_id__social_activity_getC | GET /v1/users/{clerk_id}/social-activity (public) — Public social activity timeline for a user — Public timeline for one user. |
| get_user_by_query_v1_users_getB | GET /v1/users (public) — Look up user by username — Look up a user by username. When This endpoint is public and does not require authentication. |
| get_user_profile_v1_users__user_id__getA | GET /v1/users/{user_id} (public) — Get user public profile — Get a user's public profile. Returns the user's public information including dataset count, starred count, and public collection count. This endpoint is public and does not require authentication. |
| list_user_datasets_v1_users__user_id__datasets_getA | GET /v1/users/{user_id}/datasets (public) — List user's datasets — List datasets owned by a user. Returns a paginated list of datasets that the user has created, ordered by creation date (most recent first). Returns empty list for users who haven't created any datasets yet. This endpoint is public and does not require authentication. |
| list_user_starred_datasets_v1_users__user_id__stars_datasets_getA | GET /v1/users/{user_id}/stars/datasets (public) — List user's starred datasets — List datasets starred by a user. Returns a paginated list of datasets the user has starred, ordered by when they were starred (most recent first). Returns empty list for users who haven't starred any datasets yet. This endpoint is public and does not require authentication. |
| list_user_collections_v1_users__user_id__collections_getA | GET /v1/users/{user_id}/collections (public) — List user's public collections — List public collections created by a user. Returns a paginated list of the user's public collections, ordered by last update time (most recent first). Returns empty list for users who haven't created any collections yet. Private collections are not included. This endpoint is public and does not require authentication. |
| list_user_views_v1_users__user_id__views_getA | GET /v1/users/{user_id}/views (public) — List user's public views — List public views created by a user. Returns a paginated list of the user's public views, ordered by last update time (most recent first). Returns empty list for users who haven't created any views yet. Private views are not included. This endpoint is public and does not require authentication. |
| list_user_figures_v1_users__user_id__figures_getA | GET /v1/users/{user_id}/figures (public) — List user's public figures — List public figures created by a user. Figures are views that have a viz_spec set (chart/visualization configuration). Results are ordered by like_count descending (most liked first). Returns empty list for users who haven't created any figures yet. This endpoint is public and does not require authentication. |
| list_user_liked_figures_v1_users__user_id__likes_figures_getA | GET /v1/users/{user_id}/likes/figures (public) — List figures liked by a user — List figures liked by a user. Returns public figures the user has liked, ordered by when they liked them (most recent first). liked_at is included in each item. Returns empty list for users who haven't liked any figures yet. This endpoint is public and does not require authentication. |
| check_slug_availability_v1_users__user_id__views_check_slug_getA | GET /v1/users/{user_id}/views/check-slug (public) — Check whether a slug is available for the current user — Slug-availability probe used by the sandbox save dialog. Auth + ownership: the URL clerk_id must match the caller. Returns
|
| list_user_starred_views_v1_users__user_id__stars_views_getA | GET /v1/users/{user_id}/stars/views (public) — List a user's starred views (figures they have liked) — Published views the user has liked, ordered by most-recent like first. Used by the profile "Starred" tab in phase 4. Mirrors
|
| list_changelog_v1_changelog_getA | GET /v1/changelog (public) — List changelog entries — List recent platform announcements. Returns a paginated list of changelog entries, ordered by published_at descending (most recent first). This is a public endpoint and does not require authentication. |
| get_provider_stats_v1_providers__provider__stats_getB | GET /v1/providers/{provider}/stats (public) — Get provider statistics — Get aggregate statistics for a provider including dataset count, total rows, and update info. |
| get_provider_enriched_v1_providers__provider__enriched_getB | GET /v1/providers/{provider}/enriched (public) — Get enhanced provider details — Get provider details including AI-enriched metadata when available. |
| get_provider_datasets_metadata_v1_providers__provider__datasets_B | GET /v1/providers/{provider}/datasets/metadata (public) — Get enriched metadata for all datasets — Get AI-enriched metadata (layman descriptions) for all datasets in a provider. |
| get_related_providers_v1_providers__provider__related_getB | GET /v1/providers/{provider}/related (public) — Get related providers — Find providers related to this one based on shared data domains. |
| get_platform_stats_v1_stats_getA | GET /v1/stats (public) — Get platform statistics — Get platform-wide aggregate statistics including total providers, datasets, and rows. |
| get_activation_v1_me_activation_getA | GET /v1/me/activation (public) — Get user activation signals — Get user activation signals for SSR branching. Returns flags indicating whether the user has engaged with various parts of the platform. Used by SSR to decide which components to render. Authentication: Requires Clerk authentication (browser session or JWT). |
| get_recommendations_v1_me_recommendations__kind__getA | GET /v1/me/recommendations/{kind} (public) — Get personalized recommendations — Get recommendations for datasets, providers, or users. Returns personalized recommendations based on user's activity (starred datasets, followed providers, created views). Cold-start users get recommendations based on popularity rankings. Recommendation Kinds:
Authentication: Requires Clerk authentication (browser session or JWT). |
| get_feed_v1_me_feed_getA | GET /v1/me/feed (public) — Get user activity feed — Get a feed of updates relevant to the user. Returns dataset activity from providers the user follows, interleaved by time. Currently supports followed provider updates; user follow system is not yet available. Feed Types:
Pagination:
Use the Authentication: Requires Clerk authentication (browser session or JWT). |
| request_enrichment_v1_enrichment_request__provider___dataset__poA | POST /v1/enrichment/request/{provider}/{dataset} (auth: Bearer OPENDATA_API_KEY) — Request Enrichment — Public endpoint: any authenticated user can request enrichment. Rate-limited to one request per user per dataset per hour. Records the
request in |
| create_view_v1_user_views_postA | POST /v1/user-views (auth: Bearer OPENDATA_API_KEY) — Create a user view — Create a new user view. Slugs are unique per creator. Defaults to draft ( |
| create_and_publish_view_v1_user_views_create_and_publish_postA | POST /v1/user-views/create-and-publish (auth: Bearer OPENDATA_API_KEY) — Create a view and publish 1.0.0 atomically — Create a view and immediately publish 1.0.0. Atomic: the create + publish run inside a single transaction with one
final commit. If publish fails for any reason, the create rolls back —
no orphan draft is left behind. |
| get_view_v1_user_views__clerk_id___slug__getB | GET /v1/user-views/{clerk_id}/{slug} (public) — Get a specific user view — Get a view by Drafts are owner-only. Published views are public. |
| update_view_v1_user_views__clerk_id___slug__patchA | PATCH /v1/user-views/{clerk_id}/{slug} (auth: Bearer OPENDATA_API_KEY) — Update a user view — Update a view. For published views, |
| delete_view_v1_user_views__clerk_id___slug__deleteC | DELETE /v1/user-views/{clerk_id}/{slug} (auth: Bearer OPENDATA_API_KEY) — Delete a user view |
| publish_view_v1_user_views__clerk_id___slug__publish_postA | POST /v1/user-views/{clerk_id}/{slug}/publish (auth: Bearer OPENDATA_API_KEY) — Publish a new version — Publish the current draft (or working-copy edits) as a new version.
|
| view_diff_v1_user_views__clerk_id___slug__diff_getB | GET /v1/user-views/{clerk_id}/{slug}/diff (public) — Diff working copy vs the last published version |
| list_view_versions_v1_user_views__clerk_id___slug__versions_getA | GET /v1/user-views/{clerk_id}/{slug}/versions (public) — List a view's published versions (owner-aware) — List versions for a view addressed by Mirrors the public |
| list_versions_v1_views___username___slug__versions_getA | GET /v1/views/@{username}/{slug}/versions (public) — List a view's published versions — Return every published version for |
| get_versioned_view_meta_v1_views___username___slug_with_version_B | GET /v1/views/@{username}/{slug_with_version}/meta (public) — Get version metadata — Return metadata for the resolved version (display name, schema, etc.). |
| get_versioned_view_v1_views___username___slug_with_version__getA | GET /v1/views/@{username}/{slug_with_version} (public) — Get versioned view data — Resolve a versioned view and execute its query against parquet. Parses the frozen
|
| get_top_callers_v1_views___username___slug__top_callers_getA | GET /v1/views/@{username}/{slug}/top-callers (public) — Top callers for a view in a time window — Top-5 named callers + an "unattributed" bucket for the last N days. |
| list_figures_v1_figures_getA | GET /v1/figures (public) — List figures (discovery feed) — List public figures for the discovery feed. A figure is a user view with a viz_spec (visualization configuration) set. Results include viz_spec, like_count, and standard view metadata. Sort options:
This endpoint is public and does not require authentication. |
| get_figure_v1_figures__figure_id__getA | GET /v1/figures/{figure_id} (public) — Get a figure by UUID — Get a figure by its UUID. Returns full view details including viz_spec, transform_config, inline_data, origin, like_count, and is_liked_by_me. Visibility: public figures are returned to anyone; private drafts are returned only to their creator. Non-owners get a 404 for private drafts (we don't leak existence). Authentication: Optional. When authenticated, the creator can read their own drafts and is_liked_by_me reflects the user's like status. |
| create_draft_figure_v1_figures_drafts_postA | POST /v1/figures/drafts (auth: Bearer OPENDATA_API_KEY) — Create a draft figure (snapshot mode) — Create a snapshot draft figure on the authenticated user's profile. Designed for external clients (MCP today, web sandbox tomorrow) that already have rendered data in hand and want to hand the user off into the figure editor. Behavior:
|
| list_requests_v1_requests_getA | GET /v1/requests (public) — List Requests — List dataset requests in the public queue. Sorted by demand (vote count) descending by default. Pass sort=newest to sort by creation time instead. If the caller is authenticated, each entry includes whether they've upvoted it. |
| submit_request_v1_requests_postA | POST /v1/requests (auth: Bearer OPENDATA_API_KEY) — Submit Request — Submit a new dataset request to the review queue. Description-first intake: For description-only submissions, we run a quick search to surface a potential dataset match (hint only — the request is still created). |
| upvote_request_v1_requests__request_id__upvote_putC | PUT /v1/requests/{request_id}/upvote (auth: Bearer OPENDATA_API_KEY) — Upvote Request — Upvote a dataset request to increase its priority. |
| remove_upvote_v1_requests__request_id__upvote_deleteB | DELETE /v1/requests/{request_id}/upvote (auth: Bearer OPENDATA_API_KEY) — Remove Upvote — Remove an upvote from a dataset request. |
| get_request_detail_v1_requests__request_id__getA | GET /v1/requests/{request_id} (public) — Get Request Detail — Public detail view of a dataset request. Includes the linked-dataset slug when fulfilled, the submitter's display info, and the comment count. Caller's upvote state is included when authenticated. |
| list_request_events_v1_requests__request_id__events_getA | GET /v1/requests/{request_id}/events (public) — List Request Events — Paginated thread events for a single request (oldest-first). Soft-deleted comments come back as tombstones (body=null, deleted_at set) so the frontend can render "[deleted on ]" without losing position in the timeline. |
| add_comment_v1_requests__request_id__comments_postC | POST /v1/requests/{request_id}/comments (auth: Bearer OPENDATA_API_KEY) — Add Comment — Add a comment to the request thread. Authenticated users only. |
| edit_comment_v1_requests__request_id__comments__event_id__patchA | PATCH /v1/requests/{request_id}/comments/{event_id} (auth: Bearer OPENDATA_API_KEY) — Edit Comment — Edit a comment. Author or admin only. Sets edited_at. |
| delete_comment_v1_requests__request_id__comments__event_id__deleA | DELETE /v1/requests/{request_id}/comments/{event_id} (auth: Bearer OPENDATA_API_KEY) — Delete Comment — Soft-delete a comment (sets deleted_at). Author or admin only. |
| approve_request_v1_requests__request_id__approve_postA | POST /v1/requests/{request_id}/approve (auth: Bearer OPENDATA_API_KEY) — Approve Request — Approve a dataset request (pure status change, no pipeline trigger). Admin-only. Transitions status to approved. The actual dataset creation and ingestion happens separately via the fulfill endpoint. |
| mark_in_progress_v1_requests__request_id__in_progress_postC | POST /v1/requests/{request_id}/in-progress (auth: Bearer OPENDATA_API_KEY) — Mark In Progress — Mark a dataset request as in-progress. Admin-only. |
| fulfill_request_v1_requests__request_id__fulfill_postB | POST /v1/requests/{request_id}/fulfill (auth: Bearer OPENDATA_API_KEY) — Fulfill Request — Fulfill a dataset request by linking it to a created dataset. Admin-only. |
| get_request_admin_detail_v1_requests__request_id__admin_getA | GET /v1/requests/{request_id}/admin (public) — Get Request Admin Detail — Get full admin detail view for a dataset request. Admin-only. |
| update_operator_notes_v1_requests__request_id__notes_patchA | PATCH /v1/requests/{request_id}/notes (auth: Bearer OPENDATA_API_KEY) — Update Operator Notes — Update admin operator notes on a request. Admin-only. |
| reject_request_v1_requests__request_id__reject_postB | POST /v1/requests/{request_id}/reject (auth: Bearer OPENDATA_API_KEY) — Reject Request — Reject a dataset request with a reason. Admin-only. |
| sql_query_v1_datasets__provider___dataset__query_postB | POST /v1/datasets/{provider}/{dataset}/query (auth: Bearer OPENDATA_API_KEY) — Execute SQL query against a dataset — Execute a SQL query against a dataset's parquet file. The query runs in a sandboxed DuckDB environment. Only SELECT statements
are allowed. Table references like |
| cross_dataset_query_v1_query_postA | POST /v1/query (auth: Bearer OPENDATA_API_KEY) — Execute SQL query across multiple datasets — Execute a SQL query across multiple datasets. Table references use |
| get_dataset_stats_v1_graph_datasets__provider___dataset__stats_gC | GET /v1/graph/datasets/{provider}/{dataset}/stats (public) — Get Dataset Stats — Get graph-computed statistics for a dataset. |
| get_join_paths_v1_graph_datasets__provider___dataset__join_pathsC | GET /v1/graph/datasets/{provider}/{dataset}/join-paths (public) — Get Join Paths — Discover multi-hop join paths from a dataset. |
| get_related_v1_graph_datasets__provider___dataset__related_getB | GET /v1/graph/datasets/{provider}/{dataset}/related (public) — Get Related — Get graph-powered related datasets (structural + semantic blended). |
| get_neighbors_v1_graph_datasets__provider___dataset__neighbors_gC | GET /v1/graph/datasets/{provider}/{dataset}/neighbors (public) — Get Neighbors — Get direct 1-hop connections from a dataset. |
| get_schema_graph_v1_graph_datasets__provider___dataset__schema_gC | GET /v1/graph/datasets/{provider}/{dataset}/schema-graph (public) — Get Schema Graph — Get the schema-level subgraph around a dataset for D3 visualization. |
| get_bridges_v1_graph_bridges_getC | GET /v1/graph/bridges (public) — Get Bridges — Get top bridge datasets by betweenness centrality. |
| get_communities_v1_graph_communities_getB | GET /v1/graph/communities (public) — Get Communities — Get community listing with top datasets and dominant topics. |
| get_community_datasets_v1_graph_communities__community_id__datasB | GET /v1/graph/communities/{community_id}/datasets (public) — Get Community Datasets — List datasets in a graph community, ordered by importance. |
| get_subgraph_v1_graph_subgraph_getA | GET /v1/graph/subgraph (public) — Get Subgraph — Get a seeded subgraph for the graph explorer. When seed_type/seed_id are omitted, returns a sample of the full graph. For dataset seeds, seed_id should be 'provider/slug' (e.g. 'bls/cpi-u'). |
| get_entity_datasets_v1_graph_entities__entity_type___entity_id__C | GET /v1/graph/entities/{entity_type}/{entity_id}/datasets (public) — Get Entity Datasets — Get datasets referencing a specific entity. |
| get_health_v1_graph_health_getA | GET /v1/graph/health (public) — Get Health — Get graph health and sync status. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
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/Skeego/opendata-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server