UNPKG

mcp-ai-agent

Version:

An AI agentic tool on typescript that can use MCP servers

63 lines (62 loc) 1.43 kB
{ "name": "mcp-ai-agent", "version": "0.0.13", "description": "An AI agentic tool on typescript that can use MCP servers", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "type": "module", "files": [ "dist", "README.md" ], "scripts": { "test": "jest", "start": "npm run build", "build": "tsup", "prepublishOnly": "npm run build", "patch": "npm version patch && npm publish", "minor": "npm version minor && npm publish", "major": "npm version major && npm publish" }, "author": "Foad Kesheh <foad@fmktech.com.br>", "license": "MIT", "dependencies": { "@ai-sdk/openai": "^1.3.0", "ai": "^4.2.0", "zod": "^3.24.2", "zod-to-json-schema": "^3.24.5" }, "devDependencies": { "@types/jest": "^29.5.12", "jest": "^29.7.0", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "tsup": "^8.0.1", "typescript": "^5.3.3" }, "peerDependencies": { "@ai-sdk/openai": "^1.3.0", "ai": "^4.2.0" }, "engines": { "node": ">=16.0.0" }, "keywords": [ "ai", "agent", "mcp", "openai", "typescript", "ai-agent", "language-model" ], "repository": { "type": "git", "url": "https://github.com/fkesheh/mcp-ai-agent" }, "bugs": { "url": "https://github.com/fkesheh/mcp-ai-agent/issues" }, "homepage": "https://github.com/fkesheh/mcp-ai-agent#readme" }