AgentHubAgentHub

Temporal Cortex Calendar MCP

MCP ServerMCP Registry官方收录

io.github.temporal-cortex/mcp · v0.9.1

18 deterministic calendar tools: contact resolution, temporal context, availability, booking

概览

Temporal Cortex Calendar MCP 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@temporal-cortex/cortex-mcp"
      ]
    }
  }
}

环境变量

GOOGLE_CLIENT_ID可选

Google OAuth Client ID (required for Google Calendar)

GOOGLE_CLIENT_SECRET可选secret

Google OAuth Client Secret (required if using Google Calendar)

GOOGLE_OAUTH_CREDENTIALS可选

Path to Google OAuth JSON credentials file (alternative to CLIENT_ID + SECRET)

MICROSOFT_CLIENT_ID可选

Azure AD app ID (required for Outlook Calendar)

MICROSOFT_CLIENT_SECRET可选secret

Azure AD client secret (required for Outlook Calendar)

TIMEZONE可选

IANA timezone override (e.g., America/New_York). Overrides stored config and OS detection.

WEEK_START可选

Week start day: 'monday' (default, ISO 8601) or 'sunday'. Overrides stored config.

TENANT_ID可选

UUID for tenant isolation (auto-generated if not set)

LOCK_TTL_SECS可选

Lock time-to-live in seconds for booking safety

OAUTH_REDIRECT_PORT可选

Port for the local OAuth callback server

HTTP_PORT可选

Port for HTTP transport. When set, enables streamable HTTP mode instead of stdio.

HTTP_HOST可选

Bind address for HTTP transport (default: 127.0.0.1)

ALLOWED_ORIGINS可选

Comma-separated allowed Origin headers for HTTP mode. Cross-origin requests rejected if unset.

TEMPORAL_CORTEX_TELEMETRY可选

Override telemetry consent: 'off' to disable, 'on' to enable anonymous usage analytics.

REDIS_URLS可选

Comma-separated Redis URLs for distributed locking within Platform Mode. Optional.

相关资源

统一 Manifest

{
  "id": "io.github.temporal-cortex/mcp",
  "type": "mcp-server",
  "version": "0.9.1",
  "displayName": "Temporal Cortex Calendar MCP",
  "description": "18 deterministic calendar tools: contact resolution, temporal context, availability, booking",
  "repository": {
    "url": "https://github.com/temporal-cortex/mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@temporal-cortex/cortex-mcp",
        "version": "0.9.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "GOOGLE_CLIENT_ID",
            "description": "Google OAuth Client ID (required for Google Calendar)"
          },
          {
            "name": "GOOGLE_CLIENT_SECRET",
            "description": "Google OAuth Client Secret (required if using Google Calendar)",
            "isSecret": true
          },
          {
            "name": "GOOGLE_OAUTH_CREDENTIALS",
            "description": "Path to Google OAuth JSON credentials file (alternative to CLIENT_ID + SECRET)"
          },
          {
            "name": "MICROSOFT_CLIENT_ID",
            "description": "Azure AD app ID (required for Outlook Calendar)"
          },
          {
            "name": "MICROSOFT_CLIENT_SECRET",
            "description": "Azure AD client secret (required for Outlook Calendar)",
            "isSecret": true
          },
          {
            "name": "TIMEZONE",
            "description": "IANA timezone override (e.g., America/New_York). Overrides stored config and OS detection."
          },
          {
            "name": "WEEK_START",
            "description": "Week start day: 'monday' (default, ISO 8601) or 'sunday'. Overrides stored config."
          },
          {
            "name": "TENANT_ID",
            "description": "UUID for tenant isolation (auto-generated if not set)"
          },
          {
            "name": "LOCK_TTL_SECS",
            "description": "Lock time-to-live in seconds for booking safety"
          },
          {
            "name": "OAUTH_REDIRECT_PORT",
            "description": "Port for the local OAuth callback server"
          },
          {
            "name": "HTTP_PORT",
            "description": "Port for HTTP transport. When set, enables streamable HTTP mode instead of stdio."
          },
          {
            "name": "HTTP_HOST",
            "description": "Bind address for HTTP transport (default: 127.0.0.1)"
          },
          {
            "name": "ALLOWED_ORIGINS",
            "description": "Comma-separated allowed Origin headers for HTTP mode. Cross-origin requests rejected if unset."
          },
          {
            "name": "TEMPORAL_CORTEX_TELEMETRY",
            "description": "Override telemetry consent: 'off' to disable, 'on' to enable anonymous usage analytics."
          },
          {
            "name": "REDIS_URLS",
            "description": "Comma-separated Redis URLs for distributed locking within Platform Mode. Optional."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.temporal-cortex/mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.temporal-cortex%2Fmcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Temporal Cortex Calendar MCP — MCP Server 安装与配置 · AgentHub