Complete guide to integrating and using Verificate with your development workflow
Verificate is an enterprise-grade platform that provides MCP (Model Context Protocol) integration, AI agent validation, and professional development tools. It enables seamless connectivity between AI tools and development environments.
# Install globally via npm npm install -g @verificate/mcp-server # Or use npx for one-time setup npx @verificate/mcp-server install # Verify installation verificate-mcp --version
# Set required environment variables export VERIFICATE_API_KEY="your-api-key" export VERIFICATE_WORKSPACE_ID="your-workspace-id" export MCP_PORT=8004 # Optional: Set custom endpoint export VERIFICATE_ENDPOINT="https://api.verificate.ai"
# Start the MCP server verificate-mcp start --port 8004 # Or run in development mode verificate-mcp dev
# Test MCP server health
curl http://localhost:8004/health
# Test validation endpoint
curl -X POST http://localhost:8004/validate-ai-output \
-H "Content-Type: application/json" \
-d '{"ai_output": "test validation request"}'Follow the integration guide for your preferred development environment:
The MCP server can be configured through environment variables or a configuration file:
{
"server": {
"port": 8004,
"host": "localhost",
"cors": {
"enabled": true,
"origins": ["http://localhost:3000"]
}
},
"validation": {
"timeout": 30000,
"retries": 3,
"concurrency": 10
},
"logging": {
"level": "info",
"format": "json"
}
}# Enable TLS for production export VERIFICATE_TLS_ENABLED=true export VERIFICATE_TLS_CERT_PATH="/path/to/cert.pem" export VERIFICATE_TLS_KEY_PATH="/path/to/key.pem" # API authentication export VERIFICATE_API_SECRET="your-secret-key" export VERIFICATE_JWT_EXPIRY="24h"
http://localhost:8004
Check server health and status
Validate AI-generated content and outputs
Main MCP protocol endpoint for tool interactions
Can't find what you're looking for? Check out additional resources or contact our team.