genkitx-mcp
Version:
A Genkit plugin that provides interoperability between Genkit and Model Context Protocol (MCP). Both client and server use cases are supported.
58 lines • 1.44 kB
JSON
{
"name": "genkitx-mcp",
"keywords": [
"genkit",
"genkit-plugin",
"mcp",
"model-context-protocol",
"ai",
"genai",
"generative-ai"
],
"version": "1.7.0",
"description": "A Genkit plugin that provides interoperability between Genkit and Model Context Protocol (MCP). Both client and server use cases are supported.",
"main": "dist/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"require": "./lib/index.js",
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/firebase/genkit.git",
"directory": "js/plugins/mcp"
},
"author": "genkit",
"license": "Apache-2.0",
"peerDependencies": {
"@genkit-ai/core": "^1.7.0",
"genkit": "^1.7.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/node": "^20.11.16",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.3.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0"
},
"scripts": {
"check": "tsc",
"compile": "tsup-node",
"build:clean": "rimraf ./lib",
"build": "npm-run-all build:clean check compile",
"build:watch": "tsup-node --watch",
"test": "tsx --test ./tests/*_test.ts"
}
}