package.json•849 B
{
"name": "bioontology-server",
"version": "0.1.0",
"description": "MCP server for BioOntology API access - search ontologies, annotate text, and explore biological concepts",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"bioontology",
"ontology",
"bioinformatics",
"semantic",
"annotation",
"nlp",
"medical",
"biological"
],
"author": "MCP BioOntology Server",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"axios": "^1.7.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
},
"bin": {
"bioontology-server": "build/index.js"
}
}