Skip to main content
Glama
hingaibm

Data Intelligence MCP Server

by hingaibm
search_data_source_definition.py1.32 kB
from pydantic import BaseModel, Field from typing import Optional class SearchDataSourceDefinitionRequest(BaseModel): datasource_type: Optional[str] = Field(None, description="Datasource type name or UUID to filter data source definitions by.") hostname: Optional[str] = Field(None, description="Hostname/IP address of the data source to filter data source definitions by.") port: Optional[str] = Field(None, description="Port number of the hostname of the data source to filter data source definitions by.") physical_collection: Optional[str] = Field(None, description="Database name, bucket name, or project ID of the data source to filter data source definitions by.") class SearchDataSourceDefinitionResponse(BaseModel): id: str = Field(..., description="Unique id of the data source definition") name: str = Field(..., description="Name of the data source definition") create_time: str = Field(..., description="Time data source definition was created at") creator_id: str = Field(..., description="Id of the user who created the data source definition") datasource_type_id: str = Field(..., description="Unique id of the data source type of data source definition") datasource_type_name: str = Field(..., description="Name of the data source type of data source definition")

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/hingaibm/data-intelligence-mcp-server'

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