-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@bisibility/mcp",
"version": "0.9.0",
"mcpName": "com.bisibility/mcp",
"description": "MCP server for SEO rank tracking - give AI agents access to keyword rankings, SERP history, and rank checks.",
"type": "module",
"license": "Apache-2.0",
"author": "Corgi Corner",
"keywords": [
"ai-agents",
"bisibility",
"mcp",
"mcp-server",
"model-context-protocol",
"rank-tracker",
"rank-tracking",
"seo",
"seo-tools",
"serp",
"typescript"
],
"homepage": "https://bisibility.com",
"bugs": {
"url": "https://github.com/CorgiCorner/bisibility-mcp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CorgiCorner/bisibility-mcp.git"
},
"sideEffects": false,
"bin": {
"bisibility-mcp": "./dist/stdio.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./stdio": {
"types": "./dist/stdio.d.ts",
"import": "./dist/stdio.js"
},
"./package.json": "./package.json"
},
"files": ["assets/bisibility-mcp.png", "dist", "LICENSE", "README.md", "server.json"],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "22.23.1",
"onFail": "error"
},
"packageManager": {
"name": "npm",
"version": ">=10.9.3 <11",
"onFail": "error"
}
},
"packageManager": "npm@10.9.3",
"scripts": {
"build": "tsup",
"build:mcpb": "node scripts/build-mcpb.mjs",
"check": "npm run check:node && npm run lint && npm run typecheck && npm test",
"check:node": "node tools/check-node.mjs",
"dev": "tsx src/stdio.ts",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"test": "vitest run --coverage",
"sonar:up": "docker compose -f docker-compose.sonar.yml up -d sonarqube",
"sonar:scan": "docker compose -f docker-compose.sonar.yml run --rm scanner",
"sonar:check": "npm test && npm run sonar:scan",
"sonar:down": "docker compose -f docker-compose.sonar.yml down",
"test:integration": "vitest run --config vitest.integration.config.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@bisibility/sdk": "^0.10.0",
"@modelcontextprotocol/sdk": "1.30.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.18.11",
"@vitest/coverage-v8": "^4.1.10",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"vitest": "^4.1.10"
}
}