package.jsonā¢2.67 kB
{
"name": "@quranmcp/server",
"version": "2.0.0",
"description": "A revolutionary Model Context Protocol server for Islamic resources - Search Quran & Hadith by keywords, access Tafsir, translations, and recitations. Works with any MCP-compatible AI agent.",
"type": "module",
"main": "dist/index.js",
"bin": {
"quran-mcp-server": "dist/index.js",
"quran-mcp": "dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepare": "npm run build",
"inspector": "mcp-inspector node dist/index.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"clean": "rm -rf dist coverage",
"prebuild": "npm run clean",
"validate": "npm run lint && npm run type-check && npm run test:coverage && npm run build",
"wrangler:dev": "wrangler dev",
"wrangler:deploy": "wrangler deploy",
"wrangler:tail": "wrangler tail",
"cf:login": "wrangler login",
"cf:deploy": "npm run build && wrangler deploy",
"cf:dev": "npm run build && wrangler dev"
},
"keywords": [
"mcp",
"quran",
"hadith",
"tafsir",
"islamic",
"ai",
"llm",
"model-context-protocol",
"search",
"claude",
"chatgpt",
"islamic-resources",
"quran-search",
"hadith-search"
],
"repository": {
"type": "git",
"url": "https://github.com/Prince77-7/quranMCP.git"
},
"bugs": {
"url": "https://github.com/Prince77-7/quranMCP/issues"
},
"homepage": "https://github.com/Prince77-7/quranMCP#readme",
"author": "Quran MCP Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"node-cache": "^5.1.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.0",
"prettier": "^3.2.5",
"typescript": "^5.7.2",
"vitest": "^1.6.0",
"wrangler": "^3.94.0"
},
"engines": {
"node": ">=18.0.0"
}
}