AI-powered support
Ask me anything about SettleGrid
Integrate Legal compliance MCP into your AutoGen agent with SettleGrid's per-call billing. No subscriptions, no minimums — pay only for what you use.
A Model Context Protocol server providing content guardrails and security filtering capabilities for AI applications. Includes a security checkpoint interface for validating and protecting AI interactions.
AutoGen is Microsoft's framework for building multi-agent conversational systems. Agents can use tools registered as Python functions.
pip install pyautogenPurchase credits for Legal compliance MCP, then generate an API key from your Consumer Dashboard.
import autogen
import requests
# Define the tool function
def call_legal_compliance_mcp(query: str) -> str:
"""Call LegalcomplianceMCP via SettleGrid.
Args:
query: Input to send to the tool.
Returns:
The tool response as a string.
"""
resp = requests.post(
"https://proxy.settlegrid.ai/v1/legal_compliance_mcp",
headers={
"x-api-key": "sg_live_your_key_here",
"Content-Type": "application/json",
},
json={"query": query},
)
resp.raise_for_status()
return str(resp.json())
# Set up agents
assistant = autogen.AssistantAgent("assistant", llm_config=llm_config)
user_proxy = autogen.UserProxyAgent(
"user_proxy",
human_input_mode="NEVER",
code_execution_config=False,
)
# Register the tool
assistant.register_for_llm(
name="legal_compliance_mcp",
description="LegalcomplianceMCP — call via SettleGrid",
)(call_legal_compliance_mcp)
user_proxy.register_for_execution(name="legal_compliance_mcp")(call_legal_compliance_mcp)
user_proxy.initiate_chat(assistant, message="Use LegalcomplianceMCP for this task")Execute your AutoGen agent. SettleGrid automatically meters each call to Legal compliance MCP and deducts from your credit balance. No rate limits beyond your purchased credits.
No subscriptions or minimums. Credits never expire. See full pricing details.
Purchase credits and start using Legal compliance MCP in your AutoGen agent today.
View Legal compliance MCP →Use Legal compliance MCP with other agent frameworks: