|
12 | 12 | [](https://bundlephobia.com/package/@computekit/react) |
13 | 13 | [](https://opensource.org/licenses/MIT) |
14 | 14 | [](https://www.typescriptlang.org/) |
| 15 | +[](https://gitmcp.io/tapava/compute-kit) |
15 | 16 | [](https://stackblitz.com/edit/compute-kit?file=README.md) |
16 | 17 |
|
17 | | -[📚 Documentation](https://tapava.github.io/compute-kit) • [Live Demo](https://computekit-demo.vercel.app/) • [Getting Started](#-getting-started) • [Examples](#-examples) • [API](#-api) • [React Hooks](#-react-hooks) • [WASM](#-webassembly-support) |
| 18 | +[📚 Documentation](https://tapava.github.io/compute-kit) • [Live Demo](https://computekit-demo.vercel.app/) • [Getting Started](#-getting-started) • [Examples](#-examples) • [API](#-api) • [React Hooks](#-react-hooks) • [WASM](#-webassembly-support) • [🤖 MCP Server](#-mcp-server) |
18 | 19 |
|
19 | 20 | </div> |
20 | 21 |
|
@@ -604,7 +605,101 @@ computekit/ |
604 | 605 |
|
605 | 606 | --- |
606 | 607 |
|
607 | | -## 🤝 Contributing |
| 608 | +## � MCP Server |
| 609 | +
|
| 610 | +This repository has an [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) server that lets AI assistants access the ComputeKit documentation and codebase directly. Use it as context in tools like **VS Code Copilot**, **Cursor**, **Windsurf**, **Claude Desktop**, and others. |
| 611 | +
|
| 612 | +**MCP Server URL:** |
| 613 | +
|
| 614 | +``` |
| 615 | +https://gitmcp.io/tapava/compute-kit |
| 616 | +``` |
| 617 | +
|
| 618 | +### VS Code (GitHub Copilot) |
| 619 | +
|
| 620 | +Add the following to your `.vscode/mcp.json` (create the file if it doesn't exist): |
| 621 | +
|
| 622 | +```json |
| 623 | +{ |
| 624 | + "servers": { |
| 625 | + "computekit": { |
| 626 | + "type": "sse", |
| 627 | + "url": "https://gitmcp.io/tapava/compute-kit" |
| 628 | + } |
| 629 | + } |
| 630 | +} |
| 631 | +``` |
| 632 | +
|
| 633 | +Alternatively, you can add it to your **User Settings** (`settings.json`): |
| 634 | +
|
| 635 | +```json |
| 636 | +{ |
| 637 | + "mcp": { |
| 638 | + "servers": { |
| 639 | + "computekit": { |
| 640 | + "type": "sse", |
| 641 | + "url": "https://gitmcp.io/tapava/compute-kit" |
| 642 | + } |
| 643 | + } |
| 644 | + } |
| 645 | +} |
| 646 | +``` |
| 647 | +
|
| 648 | +### Cursor |
| 649 | +
|
| 650 | +Go to **Cursor Settings → MCP** and add a new server: |
| 651 | +
|
| 652 | +```json |
| 653 | +{ |
| 654 | + "mcpServers": { |
| 655 | + "computekit": { |
| 656 | + "url": "https://gitmcp.io/tapava/compute-kit" |
| 657 | + } |
| 658 | + } |
| 659 | +} |
| 660 | +``` |
| 661 | +
|
| 662 | +### Windsurf |
| 663 | +
|
| 664 | +Add to your `~/.codeium/windsurf/mcp_config.json`: |
| 665 | +
|
| 666 | +```json |
| 667 | +{ |
| 668 | + "mcpServers": { |
| 669 | + "computekit": { |
| 670 | + "serverUrl": "https://gitmcp.io/tapava/compute-kit" |
| 671 | + } |
| 672 | + } |
| 673 | +} |
| 674 | +``` |
| 675 | +
|
| 676 | +### Claude Desktop |
| 677 | +
|
| 678 | +Add to your Claude Desktop config (`claude_desktop_config.json`): |
| 679 | +
|
| 680 | +```json |
| 681 | +{ |
| 682 | + "mcpServers": { |
| 683 | + "computekit": { |
| 684 | + "command": "npx", |
| 685 | + "args": [ |
| 686 | + "-y", |
| 687 | + "@anthropic-ai/mcp-proxy@latest", |
| 688 | + "https://gitmcp.io/tapava/compute-kit" |
| 689 | + ] |
| 690 | + } |
| 691 | + } |
| 692 | +} |
| 693 | +``` |
| 694 | +
|
| 695 | +> **Config file location:** |
| 696 | +> |
| 697 | +> - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json` |
| 698 | +> - Windows: `%APPDATA%\Claude\claude_desktop_config.json` |
| 699 | +
|
| 700 | +--- |
| 701 | +
|
| 702 | +## �🤝 Contributing |
608 | 703 |
|
609 | 704 | Contributions are welcome! Please read our [Contributing Guide](CONTRIBUTING.md) first. |
610 | 705 |
|
|
0 commit comments