Skip to main content
Glama
hingaibm

Data Intelligence MCP Server

by hingaibm
search_rule.py780 B
from pydantic import BaseModel, Field from typing import Union, Literal, List class SearchDataProtectionRuleRequest(BaseModel): data_protection_rule_search_query: Union[Literal["*"], str] = Field( description='The search query to search for data protection rules. If the user wants to search for data protection rules with a specific name or description, this is the name to search for. If user wants to search for all data protection rules, this value should be "*".' ) class DataProtectionRule(BaseModel): name: str description: str modified_on: str url: str class SearchDataProtectionRuleResponse(BaseModel): count: int = Field(description="The number of data protection rules found.") data_protection_rules: List[DataProtectionRule]

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