Skip to content

Commit d126f06

Browse files
committed
(fix): improvements
1 parent 17b6a75 commit d126f06

File tree

4 files changed

+34
-10
lines changed

4 files changed

+34
-10
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Olostep MCP Server
22

3+
<a href="https://glama.ai/mcp/servers/ur5ulf3b8e">
4+
<img width="380" height="200" src="https://glama.ai/mcp/servers/ur5ulf3b8e/badge" />
5+
</a>
6+
37
A powerful MCP (Machine Control Protocol) server that provides web scraping and content extraction capabilities for AI assistants.
48

59
## Installation

package-lock.json

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 22 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "olostep-mcp",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
4+
"description": "Olostep MCOP server for web scraping, google search and website urls search.",
45
"type": "module",
56
"bin": {
67
"olostep": "./build/index.js"
@@ -11,10 +12,7 @@
1112
"files": [
1213
"build"
1314
],
14-
"keywords": [],
15-
"author": "",
1615
"license": "ISC",
17-
"description": "",
1816
"dependencies": {
1917
"@modelcontextprotocol/sdk": "^1.6.1",
2018
"dotenv": "^16.4.7",
@@ -24,5 +22,24 @@
2422
"devDependencies": {
2523
"@types/node": "^22.13.10",
2624
"typescript": "^5.8.2"
27-
}
25+
},
26+
"engines": {
27+
"node": ">=18.0.0"
28+
},
29+
"keywords": [
30+
"mcp",
31+
"olostep",
32+
"web-scraping",
33+
"google-search",
34+
"markdown-extraction"
35+
],
36+
"repository": {
37+
"type": "git",
38+
"url": "git+https://github.com/olostep/olostep-mcp-server.git"
39+
},
40+
"author": "olostep",
41+
"bugs": {
42+
"url": "https://github.com/olostep/olostep-mcp-server/issues"
43+
},
44+
"homepage": "https://github.com/olostep/olostep-mcp-server#readme"
2845
}

tsconfig.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"compilerOptions": {
33
"target": "ES2022",
4-
"module": "Node16",
5-
"moduleResolution": "Node16",
4+
"module": "NodeNext",
5+
"moduleResolution": "NodeNext",
66
"outDir": "./build",
77
"rootDir": "./src",
88
"strict": true,
@@ -11,5 +11,5 @@
1111
"forceConsistentCasingInFileNames": true
1212
},
1313
"include": ["src/**/*"],
14-
"exclude": ["node_modules"]
14+
"exclude": ["node_modules", "build", "tests"]
1515
}

0 commit comments

Comments
 (0)