AgentHubAgentHub

mcp-1c

MCP ServerMCP Registry官方收录

io.github.RCS-kz/mcp-1c · v0.1.0

MCP server for 1C:Enterprise — read+write CRM/ERP through Claude/Cursor/Cline.

概览

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

安装

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

{
  "mcpServers": {
    "mcp-1c": {
      "command": "node>=16, python>=3.8",
      "args": [
        "-y",
        "@rcs-kz/mcp-1c"
      ],
      "env": {
        "MCP_1C_BASE": "<MCP_1C_BASE>",
        "MCP_1C_USER": "<MCP_1C_USER>",
        "MCP_1C_PASSWORD": "<MCP_1C_PASSWORD>",
        "RCS_LICENSE_KEY": "<RCS_LICENSE_KEY>"
      }
    }
  }
}

环境变量

MCP_1C_BASE必填

URL of the 1C HTTP service (with MCPService extension installed)

MCP_1C_USER必填

1C user with API access

MCP_1C_PASSWORD必填secret

Password for the 1C user

RCS_LICENSE_KEY必填secret

RCS license token (Solo free, Pro 9900 KZT/mo, Team 39900 KZT/mo)

相关资源

统一 Manifest

{
  "id": "io.github.RCS-kz/mcp-1c",
  "type": "mcp-server",
  "version": "0.1.0",
  "displayName": "mcp-1c",
  "description": "MCP server for 1C:Enterprise — read+write CRM/ERP through Claude/Cursor/Cline.",
  "repository": {
    "url": "https://github.com/rcs-kz/mcp-1c",
    "source": "github"
  },
  "homepage": "https://www.npmjs.com/package/@rcs-kz/mcp-1c",
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@rcs-kz/mcp-1c",
        "version": "0.1.0",
        "runtimeHint": "node>=16, python>=3.8",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "MCP_1C_BASE",
            "description": "URL of the 1C HTTP service (with MCPService extension installed)",
            "isRequired": true
          },
          {
            "name": "MCP_1C_USER",
            "description": "1C user with API access",
            "isRequired": true
          },
          {
            "name": "MCP_1C_PASSWORD",
            "description": "Password for the 1C user",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "RCS_LICENSE_KEY",
            "description": "RCS license token (Solo free, Pro 9900 KZT/mo, Team 39900 KZT/mo)",
            "isRequired": true,
            "isSecret": true
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.RCS-kz/mcp-1c",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.RCS-kz%2Fmcp-1c/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
mcp-1c — MCP Server 安装与配置 · AgentHub