UNPKG

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
{ "name": "genkitx-mcp", "keywords": [ "genkit", "genkit-plugin", "mcp", "model-context-protocol", "ai", "genai", "generative-ai" ], "version": "0.9.12", "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": "0.9.12", "@genkit-ai/core": "0.9.12" }, "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.0.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" } }