We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/detailobsessed/unblu-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
{
"version": "1.0",
"name": "unblu-mcp-safety-policy",
"description": "Default safety policy for Unblu MCP server. Allows discovery tools and read-only API operations, blocks destructive operations.",
"default_effect": "deny",
"rules": [
{
"name": "allow-discovery-tools",
"effect": "allow",
"principal_conditions": [],
"resource_conditions": [
{
"path": "attributes.mcp_method",
"operator": "in",
"value": ["tools/list", "resources/list", "prompts/list"]
}
],
"actions": ["access", "read"]
},
{
"name": "allow-read-only-tools",
"effect": "allow",
"principal_conditions": [],
"resource_conditions": [
{
"path": "attributes.tool_name",
"operator": "in",
"value": [
"find_operation",
"get_current_account",
"search_conversations",
"get_conversation",
"search_persons",
"get_person",
"search_users",
"get_user",
"check_agent_availability",
"search_named_areas"
]
}
],
"actions": ["execute"]
},
{
"name": "allow-mutation-tools",
"effect": "allow",
"principal_conditions": [],
"resource_conditions": [
{
"path": "attributes.tool_name",
"operator": "in",
"value": ["assign_conversation", "end_conversation"]
}
],
"actions": ["execute"]
},
{
"name": "allow-read-api-calls",
"effect": "allow",
"principal_conditions": [],
"resource_conditions": [
{
"path": "attributes.tool_name",
"operator": "eq",
"value": "execute_operation"
},
{
"path": "attributes.args.operation_id",
"operator": "regex",
"value": "^[a-zA-Z]*(Get|Search|List|Find|Read|Is|Has|Can|Check|Count|Exists|ProductVersion|Ping)[A-Za-z]*$"
}
],
"actions": ["execute"]
},
{
"name": "deny-destructive-api-calls",
"effect": "deny",
"principal_conditions": [],
"resource_conditions": [
{
"path": "attributes.tool_name",
"operator": "eq",
"value": "execute_operation"
},
{
"path": "attributes.args.operation_id",
"operator": "regex",
"value": "(Create|Update|Delete|Set|Add|Remove|Clear|Reset|Send|Post|Put|Patch|Login|Logout|Impersonate|Start|Stop|Forward|Invite|Revoke|Approve|Reject|Pause|Resume|Transform|Migrate|Generate|Invalidate|Offboard|Requeue|Renew|Install|Authenticate|Delivered|SentSuccessfully|Disable|Enable|Finish|End|Export|Change|Write|Trigger|Switch|Restart)"
}
],
"actions": ["execute"]
}
]
}