Skip to content

Commit 1a7ace2

Browse files
authored
Merge pull request #20 from tapava/develop
feat: added mcp extension for vs code
2 parents ec21775 + 190cbb0 commit 1a7ace2

9 files changed

Lines changed: 4189 additions & 0 deletions

File tree

compute-kit-mcp/.vscodeignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.vscode-test/
2+
node_modules/
3+
src/
4+
!dist/
5+
tsconfig.json
6+
*.map

compute-kit-mcp/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Changelog
2+
3+
## 0.1.0
4+
5+
- Initial release
6+
- Registers ComputeKit documentation MCP server via GitMCP

compute-kit-mcp/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 tapava
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

compute-kit-mcp/README.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# ComputeKit MCP Server — VS Code Extension
2+
3+
Provides the [ComputeKit](https://github.com/tapava/compute-kit) documentation as an MCP (Model Context Protocol) server for AI assistants in VS Code (GitHub Copilot, etc.).
4+
5+
## What it does
6+
7+
Once installed, this extension registers the ComputeKit documentation MCP server so that AI tools in VS Code can automatically access ComputeKit's API reference, examples, and guides when answering your questions.
8+
9+
The MCP server is powered by [GitMCP](https://gitmcp.io/tapava/compute-kit).
10+
11+
## Features
12+
13+
- **Zero configuration** — install the extension and the MCP server is available immediately
14+
- **Always up-to-date** — documentation is fetched live from the repository
15+
- **Works with GitHub Copilot** — ask Copilot about ComputeKit and it will have full context
16+
17+
## Topics covered
18+
19+
- Web Worker pool setup and usage
20+
- React hooks (`useCompute`, `useComputeQuery`)
21+
- WebAssembly (WASM) module loading
22+
- Typed function registry
23+
- Pipeline API for chaining computations
24+
- Performance tips and debugging
25+
26+
## Requirements
27+
28+
- VS Code 1.99 or later
29+
- GitHub Copilot or another AI assistant that supports MCP
30+
31+
## Links
32+
33+
- [ComputeKit Documentation](https://tapava.github.io/compute-kit)
34+
- [GitHub Repository](https://github.com/tapava/compute-kit)
35+
- [Live Demo](https://computekit-demo.vercel.app/)
5.15 KB
Binary file not shown.

0 commit comments

Comments
 (0)