MCP Hub
Back to servers

@agentutil/think-mcp

MCP server — intent security pre-flight checks for autonomous AI agents

npm46/wk
Updated
Feb 28, 2026

Quick Install

npx -y @agentutil/think-mcp
name: think-mcp
transport: stdio
tools:
  - name: check_intent
    description: Pre-flight safety check before executing an action
    input_schema:
      type: object
      required: [action, description]
      properties:
        action:
          type: string
          description: Short action identifier (e.g. delete_records, send_email)
        description:
          type: string
          description: What the agent is about to do
        domain:
          type: string
          enum: [database, communications, file_system, deployment, financial, user_management, api, content, commerce, infrastructure]
        context:
          type: object
          description: Key-value pairs of additional context
    output_schema:
      type: object
      properties:
        data:
          type: object
          properties:
            action_type:
              type: string
            risk_level:
              type: string
              enum: [critical, high, medium, low]
            risk_factors:
              type: array
              items:
                type: string
            checklist:
              type: array
              items:
                type: object
                properties:
                  category:
                    type: string
                  check:
                    type: string
                  why:
                    type: string
                  severity:
                    type: string
            summary:
              type: string

  - name: expand_intent
    description: Surface implied requirements from a human instruction
    input_schema:
      type: object
      required: [instruction]
      properties:
        instruction:
          type: string
          description: The instruction the agent received
        domain:
          type: string
          enum: [database, communications, file_system, deployment, financial, user_management, api, content, commerce, infrastructure]
    output_schema:
      type: object
      properties:
        data:
          type: object
          properties:
            original_instruction:
              type: string
            implied_requirements:
              type: array
              items:
                type: object
                properties:
                  category:
                    type: string
                  requirement:
                    type: string
                  confidence:
                    type: number
                  why:
                    type: string
            summary:
              type: string

  - name: review_action
    description: Post-action verification checklist
    input_schema:
      type: object
      required: [action_completed, description]
      properties:
        action_completed:
          type: string
          description: What action was just completed
        description:
          type: string
          description: What was done
        domain:
          type: string
          enum: [database, communications, file_system, deployment, financial, user_management, api, content, commerce, infrastructure]
    output_schema:
      type: object
      properties:
        data:
          type: object
          properties:
            action_type:
              type: string
            risk_level:
              type: string
            verification_checklist:
              type: array
              items:
                type: object
                properties:
                  category:
                    type: string
                  check:
                    type: string
                  why:
                    type: string
                  severity:
                    type: string
            summary:
              type: string

  - name: list_actions
    description: List all action types with safety checks (free)
    input_schema: {}
    output_schema:
      type: object
      properties:
        data:
          type: object
          properties:
            domains:
              type: object
            total_action_types:
              type: integer
            total_checks:
              type: integer

configuration:
  env:
    THINK_API_URL: "https://think.agentutil.net"

Reviews

No reviews yet

Sign in to write a review