AgentHubAgentHub

Itcons.app

MCP ServerMCP Registry官方收录

io.github.itcons-app/mcp · v0.5.1

Connect AI assistants to Itcons.app work orders, reports, projects, users, and resources.

概览

Itcons.app 是一个MCP Server,收录自 官方 MCP Registry。支持 streamable-http、sse、stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

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

{
  "mcpServers": {
    "mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@itcons-app/mcp"
      ],
      "env": {
        "ITCONS_DOMAIN": "<ITCONS_DOMAIN>"
      }
    }
  }
}

环境变量

ITCONS_DOMAIN必填

Itcons.app tenant domain, for example 'demo' for https://demo.itcons.app.

ITCONS_USERNAME可选

Itcons.app username or email for local stdio usage.

ITCONS_PASSWORD可选secret

Itcons.app password for local stdio usage.

ITCONS_TOKEN可选secret

Existing Itcons.app bearer token. Can be used instead of username and password.

ITCONS_TIMEZONE可选

Timezone used for date-based queries.

相关资源

统一 Manifest

{
  "id": "io.github.itcons-app/mcp",
  "type": "mcp-server",
  "version": "0.5.1",
  "displayName": "Itcons.app",
  "description": "Connect AI assistants to Itcons.app work orders, reports, projects, users, and resources.",
  "repository": {
    "url": "https://github.com/itcons-app/mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@itcons-app/mcp",
        "version": "0.5.1",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "ITCONS_DOMAIN",
            "description": "Itcons.app tenant domain, for example 'demo' for https://demo.itcons.app.",
            "isRequired": true
          },
          {
            "name": "ITCONS_USERNAME",
            "description": "Itcons.app username or email for local stdio usage."
          },
          {
            "name": "ITCONS_PASSWORD",
            "description": "Itcons.app password for local stdio usage.",
            "isSecret": true
          },
          {
            "name": "ITCONS_TOKEN",
            "description": "Existing Itcons.app bearer token. Can be used instead of username and password.",
            "isSecret": true
          },
          {
            "name": "ITCONS_TIMEZONE",
            "description": "Timezone used for date-based queries."
          }
        ]
      }
    ],
    "remotes": [
      {
        "transport": "streamable-http",
        "url": "https://mcp.itcons.app/mcp"
      },
      {
        "transport": "sse",
        "url": "https://mcp.itcons.app/sse"
      }
    ]
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.itcons-app/mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.itcons-app%2Fmcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Itcons.app — MCP Server 安装与配置 · AgentHub