Skip to main content
Glama
tomjwxf

protect-mcp

deploy

Deploy applications to production or staging environments with security policies and approval gates. This tool enables controlled deployment workflows while maintaining audit trails and verification capabilities.

Instructions

Deploy the application to production

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
environmentYesTarget environment
reasonNoDeployment reason

Implementation Reference

  • The implementation logic for the 'deploy' tool in the demo server.
    case 'deploy':
      resultText = `[demo] Deployed to ${args.environment || 'staging'}${args.reason ? ` (reason: ${args.reason})` : ''}`;
      break;
  • Registration and schema definition for the 'deploy' tool.
    {
      name: 'deploy',
      description: 'Deploy the application to production',
      inputSchema: {
        type: 'object',
        properties: {
          environment: { type: 'string', description: 'Target environment', enum: ['staging', 'production'] },
          reason: { type: 'string', description: 'Deployment reason' },
        },
        required: ['environment'],
      },
    },

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/tomjwxf/scopeblind-gateway'

If you have feedback or need assistance with the MCP directory API, please join our Discord server