npm @aicanvas/mcpstdioMITupdated 9d ago
Open-source animated React and Tailwind components, design systems, and templates. Browse, copy, and ship. Or let your AI editor install them for you.
aicanvas で何ができる?
A growing collection of animated React components, plus a token-driven design system and ready-made templates. Every component arrives as real source code in your project, with an AI remix prompt that works in any AI coding tool. Open core: the free library is MIT, and Premium is proprietary.
Install
Add any component to your project with one command:
npx shadcn@latest add @aicanvas/task-cards
Starting a new project? Initialize first, then add:
npx shadcn@latest init # new projects only
npx shadcn@latest add @aicanvas/task-cards
One-command installs use a free AI Canvas account: signed out, the CLI writes a small placeholder file instead of the component. Sign up free, then copy your personal install command from any component page. No account needed to read the code: every free component's full MIT source lives right here in this repo.
Three ways to use it
| Path | Command or action | Best for |
|---|---|---|
| shadcn CLI | npx shadcn@latest add @aicanvas/<slug> |
Dropping finished, open-source code straight into your repo |
| AI Canvas MCP | npx -y @aicanvas/mcp |
Letting your AI editor search and install components for you |
| Remix with AI | Copy the full prompt from any free component page | Rebuilding a component your way in any AI coding tool |
Browse the full catalog and copy the exact command for any component at aicanvas.me. pnpm dlx, yarn dlx, and bunx work too.
Why AI Canvas
- Open core, free to start. The free library is MIT licensed, so you can use it in personal and commercial projects, modify it freely, and ship it without attribution. Premium components, design systems, and templates are proprietary.
- Full source, yours to keep. Every component arrives as real React and TypeScript code in your codebase, not a black-box dependency. Restyle it, extend it, or ship it as is. It is yours.
- Built for AI workflows. Install with the shadcn CLI, connect the MCP so your agent installs for you, or hand it a remix prompt that works in any AI coding tool.
- Animated by default. Built with Framer Motion and Tailwind CSS, ready for the Next.js App Router or any modern React setup. 3D pieces use Three.js.
AI Canvas is free to start. Premium unlocks design systems, templates, and closed-source components.
Featured components
Browse all components at aicanvas.me.
Use it with your AI editor (MCP)
Connect AI Canvas to your AI editor and let your agent search, inspect, and install components for you. Save tokens. Do not start from scratch.
claude mcp add aicanvas -- npx -y @aicanvas/mcp
Or add it to your MCP config:
{
"mcpServers": {
"aicanvas": {
"command": "npx",
"args": ["-y", "@aicanvas/mcp"]
}
}
}
Works with Claude Code, Codex, Cursor, and other MCP-compatible editors. The server is read-only and fetches the live registry at runtime, so new components reach your agent shortly after they ship. It returns published component metadata and source.
Design systems and templates
Beyond standalone components, AI Canvas ships Andromeda, a token-driven sci-fi and blueprint design system, with ready-made templates like Mission Control, Service Order, Resource Planning, and Signal Room. Installing an Andromeda component brings its source code plus the shared token bundle it depends on.
See it at aicanvas.me/design-systems/andromeda.
Repository layout
This repo holds the full AI Canvas source: the website and every free component. The component source lives here, not just the site.
| Path | What's there |
|---|---|
components-workspace/<slug>/ |
Each free component: index.tsx source, prompts.ts remix prompt, spec.md |
design-systems/andromeda/ |
The free Andromeda design system source: tokens, components, utilities |
app/ |
The aicanvas.me website (Next.js App Router) |
scripts/generate-registry.mjs |
Builds the shadcn registry JSON from the sources above |
The @aicanvas registry files served at /r/*.json are generated at build time from components-workspace/ and design-systems/, so there is no checked-in registry/ folder. Run node scripts/generate-registry.mjs to produce them locally.
Tech stack
React and TypeScript, Tailwind CSS, and Framer Motion. Built for the Next.js App Router and works in any modern React setup. 3D components use Three.js.
Project status
AI Canvas is an actively maintained project. New components, design systems, and templates ship regularly. If AI Canvas saves you time, a star helps more builders find it.
Contributing
AI Canvas is open source under MIT. Issues, ideas, and pull requests are welcome. Open an issue to suggest a component or report a bug.
License
The free library is MIT licensed. Use it in personal and commercial projects, modify it freely, and ship it without attribution. See LICENSE. Premium components, design systems, and templates are proprietary under the AI Canvas Premium License.
インストール
aicanvas をクライアントに追加します。お使いのものを選んでください。
claude mcp add mcp -- npx -y @aicanvas/mcpcodex mcp add mcp -- npx -y @aicanvas/mcpamp mcp add mcp -- npx -y @aicanvas/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aicanvas/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aicanvas/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp","command":"npx","args":["-y","@aicanvas/mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aicanvas/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aicanvas/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@aicanvas/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@aicanvas/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@aicanvas/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @aicanvas/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
スコア
39 / 100
情報不足
- ドキュメント25/25
- メンテナンス19/25
- 信頼性13/20
- 機能0/15
- 導入のしやすさ12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
バージョン履歴
| バージョン | 公開日 |
|---|---|
| 0.2.3最新 | 2026年8月7日 |
| 0.2.2 | 2026年7月8日 |