- Demonstrates GenAIScript as a fully functional MCP server.
- Exposes local tool versions via MCP tools.
- Works with VSCode (March 2025 Insiders or later).
- Supports remote execution without cloning the repository.
- Integrates with GitHub Copilot chat for AI assistance.
Install the GenAIScript VSCode extension (minimum version 1.119.4) and Node.js v20. Configure the MCP server in .vscode/mcp.json using the provided sample configuration (e.g., running npx genaiscript mcp --remote). Start the MCP server from VSCodeβs MCP interface; once running, it becomes available in GitHub Copilot chat.
# GenAIScript MCP Demo π
This repository demonstrates the MCP Server capabilities of GenAIScript. The minimum version you need is `1.119.4`
## What is GenAIScript? π€
GenAIScript is a framework that enables you to communicate with AI models (even local models). GenAIScript can use MCP tools, and can also act as the MCP server.
## Model Context Protocol (MCP) π
This is how Anthropic, the creators of MCP specification, defines [Model Context Protocol](https://modelcontextprotocol.io/introduction)
> MCP is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications. Just as USB-C provides a standardized way to connect your devices to various peripherals and accessories, MCP provides a standardized way to connect AI models to different data sources and tools.
## Installation of GenAIScript π οΈ
Install the VSCode extension. You need at least Node.js v20. Refer to https://microsoft.github.io/genaiscript/getting-started/installation/ additional instructions.
## Usage π»
If you install the March 2025 version of VSCode Insiders, you should be able to run the GenAIScript MCP server locally, to get the tool versions installed on your local machine.
[mcp.json](./.vscode/mcp.json) is where you would configure the MCP servers. Below is the sample configuration on Windows. You don't even need to clone this repo with this approach, as GenAIScript can clone the repo in the background for you to just use the tools. If you are using the `--remote` flag, you don't need to install the GenAIScript extension at all.
```jsonc
{
"servers": {
"genaiscript-mcp-remote": {
"type": "stdio",
"command": "cmd",//Have run like this in Windows. Otherwise ENOENT for npx, atleast in my machine.
"args": [
"/c",
"npx",
"-y",
"genaiscript",
"mcp",
"--remote",
"https://github.com/rajyraman/genai-mcp/",
"--remote-branch",
"main",
"--groups",
"mcp"
],
"env": {
"DEBUG": "*"
}
// "envFile": "${workspaceFolder}/.env"
}
}
}
```
You can start the MCP Server by clicking the Start link. If it is already running, you would see a Running indicator.


Below is how you can use it in the GitHub Copilot chat.

No reviews yet β be the first
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
Social sign-in isnβt configured yet. You can still create an account with email below, or ask an admin to add Google/GitHub/Discord OAuth credentials.
Sequential Thinking is an MCP server that provides a tool for dynamic and reflective problem-solving through a structured, step-by-step thinking process. It isβ¦
Filesystem is a Node.js server that implements the Model Context Protocol (MCP) for filesystem operations. It enables AI assistants to read, write, and manageβ¦
A one-of-a-kind resume builder that keeps your privacy in mind. Completely secure, customizable, portable, open-source and free forever. Try it out today!
A collection of reference implementations for the Model Context Protocol (MCP), demonstrating secure and controlled access to tools and data sources for Largeβ¦