MCP Hub
Back to servers

@agentutil/context-mcp

MCP server — situational awareness for autonomous AI agents (holidays, business hours, platform status)

npm49/wk
Updated
Feb 28, 2026

Quick Install

npx -y @agentutil/context-mcp
name: context-mcp
transport: stdio
tools:
  - name: check_context
    description: Comprehensive situational awareness check
    input_schema:
      type: object
      properties:
        action:
          type: string
          description: Action being evaluated
        description:
          type: string
          description: Detailed description
        timezone:
          type: string
          description: IANA timezone (e.g. America/New_York)
        country:
          type: string
          description: Country code (e.g. US, GB, JP)
        platform:
          type: string
          description: Platform name (e.g. github, aws)
        date:
          type: string
          description: ISO 8601 date (defaults to today)
    output_schema:
      type: object
      properties:
        data:
          type: object
          properties:
            active_factors:
              type: array
              items:
                type: string
            risk_level:
              type: string
            holidays:
              type: array
            summary:
              type: string

  - name: check_time
    description: Timezone info, business hours, and nearby holidays
    input_schema:
      type: object
      properties:
        timezone:
          type: string
          description: IANA timezone (defaults to UTC)
        country:
          type: string
          description: Country code for holiday lookup
        date:
          type: string
          description: ISO 8601 date (defaults to today)
    output_schema:
      type: object
      properties:
        data:
          type: object
          properties:
            timezone:
              type: string
            local_time:
              type: string
            business_hours:
              type: boolean
            nearby_holidays:
              type: array
            summary:
              type: string

  - name: check_platform
    description: Check operational status of a platform
    input_schema:
      type: object
      required: [platform]
      properties:
        platform:
          type: string
          description: Platform name (e.g. github, aws, stripe)
    output_schema:
      type: object
      properties:
        data:
          type: object
          properties:
            platform:
              type: string
            status:
              type: string
            details:
              type: string
            last_checked:
              type: string
            summary:
              type: string

  - name: get_calendar
    description: Upcoming holidays for the next 90 days (free)
    input_schema:
      type: object
      properties:
        country:
          type: string
          description: Country code filter (returns all if omitted)
    output_schema:
      type: object
      properties:
        data:
          type: object
          properties:
            holidays:
              type: array
              items:
                type: object
                properties:
                  date:
                    type: string
                  name:
                    type: string
                  country:
                    type: string
                  type:
                    type: string
                  business_impact:
                    type: string

configuration:
  env:
    CONTEXT_API_URL: "https://context.agentutil.net"

Reviews

No reviews yet

Sign in to write a review