package.json•1.33 kB
{
"name": "ensembl-mcp-server",
"version": "1.0.0",
"description": "Model Context Protocol server for Ensembl genomics database",
"type": "module",
"main": "index.ts",
"scripts": {
"build": "tsc",
"start": "tsx index.ts",
"start:prod": "node dist/index.js",
"start:bun": "bun index.ts",
"dev": "tsx --watch index.ts",
"dev:bun": "bun --watch index.ts",
"test": "tsx tests/run-all-tests.ts",
"test:normalizer": "tsx tests/input-normalizer.test.ts",
"test:meta": "tsx tests/test-meta.ts",
"test:lookup": "tsx tests/test-lookup.ts",
"test:sequence": "tsx tests/test-sequence.ts",
"test:overlap": "tsx tests/test-feature-overlap.ts",
"test:regulatory": "tsx tests/test-regulatory.ts",
"test:protein": "tsx tests/test-protein-features.ts",
"test:mapping": "tsx tests/test-mapping.ts",
"test:compara": "tsx tests/test-compara.ts",
"test:variation": "tsx tests/test-variation.ts",
"test:ontotax": "tsx tests/test-ontotax.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"docker": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"tsx": "^4.19.4",
"typescript": "^5.0.0"
},
"keywords": [
"mcp",
"ensembl",
"genomics",
"bioinformatics"
],
"author": "",
"license": "MIT"
}