- Mcp_server_safe_content_check
Mcp_server_safe_content_check
What is Mcp_server_safe_content_check?
Mcp_server_safe_content_check is a security server designed to ensure compliance with generative content for third-party large models, improve internal security for large models, and manage risks associated with normalized operations of large models.
How to use Mcp_server_safe_content_check?
To use the server, clone the repository and run it using the uv command. Ensure you have Python 3.10 or higher and the uv package installed. Set your Baidu Cloud access keys in the command or in the .env file before running the server.
Key features of Mcp_server_safe_content_check?
- Provides access to Baidu Cloud's large model content security features.
- Supports input content analysis to detect unsafe information.
- Can be integrated with applications that support model context protocols, such as Cursor.
Use cases of Mcp_server_safe_content_check?
- Analyzing user-generated content for safety and compliance.
- Integrating with AI code editors to ensure safe content generation.
- Providing risk assessments for various types of content.
FAQ from Mcp_server_safe_content_check?
- What programming language is required to run the server?
Python 3.10 or higher is required.
- Can I use this server with my own applications?
Yes, it can be integrated with any application that implements the MCP client specification.
- How do I check if my content is safe?
You can use the
input_analyzetool to check the safety of your input content.
Server Config
{
"mcpServers": {
"safe-content-check": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"/PATH/mcp_server_safe_content_check/src/mcp_server_safe_content_check/server.py"
],
"env": {
"BAIDU_CLOUD_ACCESS_KEY_ID": "****",
"BAIDU_CLOUD_SECRET_ACCESS_KEY": "****"
}
}
}
}