scholar-mcp 1.0.3 → 1.0.6
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/README.md +46 -6
- package/package.json +11 -2
- package/public/scholarmcp_banner.png +0 -0
- package/LICENSE +0 -21
package/README.md
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-

|
|
2
2
|
|
|
3
3
|
# ScholarMCP
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/scholar-mcp)
|
|
6
|
-
[](https://bundlephobia.com/package/scholar-mcp)
|
|
9
|
-
[](https://bundlephobia.com/package/scholar-mcp)
|
|
6
|
+
[](https://github.com/lstudlo/ScholarMCP/commits/main)
|
|
7
|
+
[](https://github.com/lstudlo/ScholarMCP/blob/main/LICENSE)
|
|
10
8
|
|
|
11
9
|
ScholarMCP is an MCP server for literature research workflows in coding agents.
|
|
10
|
+
Official documentation: https://scholar-mcp.lstudlo.com/
|
|
12
11
|
|
|
13
12
|
It gives your agent tools to:
|
|
14
13
|
- search papers across multiple sources
|
|
@@ -164,7 +163,7 @@ RESEARCH_ALLOW_LOCAL_PDFS = "true"
|
|
|
164
163
|
Run sidecar:
|
|
165
164
|
|
|
166
165
|
```bash
|
|
167
|
-
cd python-sidecar
|
|
166
|
+
cd ../../services/python-sidecar
|
|
168
167
|
python -m venv .venv
|
|
169
168
|
source .venv/bin/activate
|
|
170
169
|
pip install -r requirements.txt
|
|
@@ -210,6 +209,47 @@ pnpm check
|
|
|
210
209
|
pnpm test
|
|
211
210
|
```
|
|
212
211
|
|
|
212
|
+
## Documentation Site (Astro)
|
|
213
|
+
|
|
214
|
+
The repository includes an integrated Astro + Starlight docs app at `apps/docs` (repo-root path).
|
|
215
|
+
|
|
216
|
+
```bash
|
|
217
|
+
# run docs locally
|
|
218
|
+
pnpm docs:dev
|
|
219
|
+
|
|
220
|
+
# regenerate generated docs artifacts only
|
|
221
|
+
pnpm docs:sync
|
|
222
|
+
|
|
223
|
+
# verify docs
|
|
224
|
+
pnpm docs:check
|
|
225
|
+
|
|
226
|
+
# build docs output to apps/docs/dist
|
|
227
|
+
pnpm docs:build
|
|
228
|
+
```
|
|
229
|
+
|
|
230
|
+
Generated docs artifacts:
|
|
231
|
+
- MCP tool reference: `apps/docs/src/content/docs/reference/mcp-tools.mdx`
|
|
232
|
+
- Release notes index: `apps/docs/src/content/docs/releases/index.mdx`
|
|
233
|
+
|
|
234
|
+
Generation source inputs:
|
|
235
|
+
- Tool metadata: `packages/scholar-mcp/src/mcp/create-scholar-mcp-server.ts`
|
|
236
|
+
- Release metadata: git tags in this repository
|
|
237
|
+
|
|
238
|
+
Cloudflare Pages target settings:
|
|
239
|
+
- Root directory: `/`
|
|
240
|
+
- Build command: `pnpm install --frozen-lockfile && pnpm docs:build`
|
|
241
|
+
- Build output directory: `apps/docs/dist`
|
|
242
|
+
- Production branch: `main`
|
|
243
|
+
- Canonical docs URL: `https://scholar-mcp.lstudlo.com/`
|
|
244
|
+
|
|
245
|
+
Automatic deployment is configured via Cloudflare Pages Git integration:
|
|
246
|
+
- Cloudflare dashboard path: `Workers & Pages` -> your project -> `Settings` -> `Builds` -> `Git repository`
|
|
247
|
+
- Ensure repo access is granted in the Cloudflare GitHub app installation
|
|
248
|
+
- Configure branch controls in `Settings` -> `Builds` -> `Branch control`
|
|
249
|
+
- Production branch: `main`
|
|
250
|
+
- Preview branches: `All non-production branches` (or custom include/exclude)
|
|
251
|
+
- Build skip flags in commit message disable auto deploy (`[CI Skip]`, `[CI-Skip]`, `[Skip CI]`, `[Skip-CI]`, `[CF-Pages-Skip]`)
|
|
252
|
+
|
|
213
253
|
## Publish Workflow
|
|
214
254
|
|
|
215
255
|
```bash
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scholar-mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "MCP Server for researchers",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist",
|
|
13
|
-
"README.md"
|
|
13
|
+
"README.md",
|
|
14
|
+
"public/scholarmcp_banner.png"
|
|
14
15
|
],
|
|
15
16
|
"scripts": {
|
|
16
17
|
"dev": "tsx watch src/index.ts",
|
|
@@ -55,5 +56,13 @@
|
|
|
55
56
|
"tsx": "^4.21.0",
|
|
56
57
|
"typescript": "^5.9.3",
|
|
57
58
|
"vitest": "^4.0.18"
|
|
59
|
+
},
|
|
60
|
+
"homepage": "https://scholar-mcp.lstudlo.com",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "git+https://github.com/lstudlo/ScholarMCP.git"
|
|
64
|
+
},
|
|
65
|
+
"bugs": {
|
|
66
|
+
"url": "https://github.com/lstudlo/ScholarMCP/issues"
|
|
58
67
|
}
|
|
59
68
|
}
|
|
Binary file
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 Light Chen from lstudlo
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|