science-ai-mcp-server 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,7 +1,8 @@
1
1
  {
2
2
  "name": "science-ai-mcp-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "MCP (Model Context Protocol) server for Science AI Journal tools — Pre-Check, AI Review, Research Gaps, Journal Recommender, Duplicate Publication Checker, Article Writer. Use them inside Claude Desktop, Cursor, Cline, or any MCP-enabled client.",
5
+ "mcpName": "io.github.selfpy/science-ai-mcp-server",
5
6
  "keywords": [
6
7
  "mcp",
7
8
  "model-context-protocol",
@@ -16,7 +17,7 @@
16
17
  ],
17
18
  "homepage": "https://scienceaijournal.com/developers/mcp",
18
19
  "bugs": {
19
- "url": "https://github.com/science-ai-journal/science-ai-mcp-server/issues"
20
+ "url": "mailto:support@scienceaijournal.com"
20
21
  },
21
22
  "license": "MIT",
22
23
  "author": "Science AI Journal <support@scienceaijournal.com>",
@@ -28,11 +29,13 @@
28
29
  "files": [
29
30
  "dist",
30
31
  "README.md",
31
- "LICENSE"
32
+ "LICENSE",
33
+ "server.json"
32
34
  ],
33
35
  "scripts": {
34
36
  "build": "tsc",
35
- "prepublishOnly": "npm run build",
37
+ "// Note on prepublishOnly": "Only rebuilds if dist/ is missing. Lets users publish from the already-built npm tarball without needing tsc installed globally — the 0.1.0 publish needed --ignore-scripts because of the unconditional build.",
38
+ "prepublishOnly": "test -d dist || npm run build",
36
39
  "start": "node dist/index.js"
37
40
  },
38
41
  "engines": {
package/server.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.selfpy/science-ai-mcp-server",
4
+ "title": "Science AI Journal MCP Server",
5
+ "description": "Academic peer-review, research-gap finding, journal recommender, and article writer tools.",
6
+ "version": "0.1.1",
7
+ "websiteUrl": "https://scienceaijournal.com/developers/mcp",
8
+ "packages": [
9
+ {
10
+ "registryType": "npm",
11
+ "identifier": "science-ai-mcp-server",
12
+ "version": "0.1.1",
13
+ "transport": {
14
+ "type": "stdio"
15
+ },
16
+ "environmentVariables": [
17
+ {
18
+ "name": "SCIENCE_AI_API_KEY",
19
+ "description": "Your Science AI Journal API key. Generate at https://scienceaijournal.com/settings?section=api-keys. Required for all tool invocations.",
20
+ "isRequired": true,
21
+ "isSecret": true,
22
+ "format": "string"
23
+ },
24
+ {
25
+ "name": "SCIENCE_AI_BASE_URL",
26
+ "description": "Override the Science AI Journal base URL (default: https://scienceaijournal.com). Only needed for self-hosted or staging environments.",
27
+ "isRequired": false,
28
+ "isSecret": false,
29
+ "format": "string",
30
+ "default": "https://scienceaijournal.com"
31
+ }
32
+ ]
33
+ }
34
+ ]
35
+ }