Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@arc-ui/community-mcp

Package Overview
Dependencies
Maintainers
5
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@arc-ui/community-mcp

A Model Context Protocol (MCP) server that provides AI assistants with access to the Arc Community UI component library. Query community components and their TypeScript APIs directly from your AI assistant.

latest
npmnpm
Version
0.2.1
Version published
Maintainers
5
Created
Source

Arc Community MCP Server

A Model Context Protocol (MCP) server that provides AI assistants with access to the Arc Community UI component library. Query community components and their TypeScript APIs directly from your AI assistant.

Features

  • get_community_components_list — Returns a complete list of all available Arc Community components
  • get_community_api_info — Fetches TypeScript interface definitions and prop types for a community component

Coming soon: Documentation, coding rules, and Storybook link tools will be added in future versions.

Setup

Install

npm install @arc-ui/community-mcp
# or
pnpm install @arc-ui/community-mcp

Kiro CLI

Local (workspace)

kiro-cli mcp add --name community-mcp --command npx --args @arc-ui/community-mcp

Or manually add to .kiro/settings/mcp.json:

{
  "mcpServers": {
    "community-mcp": {
      "command": "npx",
      "args": ["-y", "@arc-ui/community-mcp"]
    }
  }
}

Global

kiro-cli mcp add --name community-mcp --command npx --args @arc-ui/community-mcp --scope global

Amazon Q (VS Code)

Add the MCP server via the Amazon Q Chat panel in VS Code, or manually create/update .vscode/mcp.json in your project:

{
  "servers": {
    "community-mcp": {
      "command": "npx",
      "args": ["-y", "@arc-ui/community-mcp"]
    }
  }
}

Example Queries

Once configured, you can ask your AI assistant:

  • "What community components are available?"
  • "Show me the props for the Accordion component"
  • "What's the API for FeaturePost?"
  • "How do I use the CopyLead component?"

Support

  • Slack: #arc-help-and-support (BT Business CDO Slack)
  • Email: ui-digital-ent-int@bt.com
  • Teams: Arc Help and Support

FAQs

Package last updated on 13 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts