This repository demonstrates the MCP Server capabilities of GenAIScript. The minimum version required is 1.119.4
.
GenAIScript is a framework that enables communication with AI models, including local models. It can use MCP tools and also act as an MCP server.
MCP is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications. It provides a standardized way to connect AI models to different data sources and tools. Learn more at Model Context Protocol.
Install the VSCode extension. You need at least Node.js v20. Refer to GenAIScript Installation Guide for additional instructions.
If you install the March 2025 version of VSCode Insiders, you can run the GenAIScript MCP server locally to get the tool versions installed on your machine.
The mcp.json
file is where you configure the MCP servers. Below is a sample configuration for Windows:
{
"servers": {
"genaiscript-mcp-remote": {
"type": "stdio",
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"genaiscript",
"mcp",
"--remote",
"https://github.com/rajyraman/genai-mcp/",
"--remote-branch",
"main",
"--groups",
"mcp"
],
"env": {
"DEBUG": "*"
}
}
}
}
You can start the MCP Server by clicking the Start link. If it is already running, you will see a Running indicator.
Below is how you can use it in the GitHub Copilot chat.
Demo of GenAIScript's MCP Server capabilities.
No releases published.