sequentum-mcp 1.2.1 → 1.3.2
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 +2 -2
- package/package.json +9 -3
package/README.md
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/sequentum-mcp)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
|
-
The [Sequentum MCP Server](https://mcp.sequentum.com) connects your AI coding assistant to Sequentum using the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction), giving your AI tools
|
|
6
|
+
The [Sequentum MCP Server](https://mcp.sequentum.com) connects your AI coding assistant to Sequentum using the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/introduction), giving your AI tools the ability to create web scraping agents, run management, scheduling, analytics, and more. Sequentum hosts and manages a remote MCP server with OAuth authentication, so there's nothing to install.
|
|
7
7
|
|
|
8
8
|
## [Tool Reference](./docs/tool-reference.md) | [Prompts Reference](./docs/prompts-reference.md) | [Resources Reference](./docs/resources-reference.md) | [Troubleshooting](./docs/troubleshooting.md) | [Changelog](./CHANGELOG.md)
|
|
9
9
|
|
|
10
10
|
## Key Features
|
|
11
11
|
|
|
12
|
-
- **Agent management**:
|
|
12
|
+
- **Agent management**: Build, list, search, and get detailed information about your web scraping agents.
|
|
13
13
|
- **Run automation**: Start, stop, and monitor agent executions with real-time status tracking.
|
|
14
14
|
- **Schedule management**: Create and manage automated schedules using cron expressions.
|
|
15
15
|
- **Analytics & diagnostics**: Get run statistics, error analysis, and suggested fixes for failures.
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sequentum-mcp",
|
|
3
|
-
"version": "1.2
|
|
4
|
-
"
|
|
3
|
+
"version": "1.3.2",
|
|
4
|
+
"mcpName": "com.sequentum/mcp",
|
|
5
|
+
"description": "Turn the web into structured, reliable, actionable enterprise data for AI Agents",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
7
8
|
"type": "module",
|
|
@@ -19,7 +20,10 @@
|
|
|
19
20
|
"prepare": "npm run build",
|
|
20
21
|
"test": "vitest run",
|
|
21
22
|
"test:watch": "vitest",
|
|
22
|
-
"test:coverage": "vitest run --coverage"
|
|
23
|
+
"test:coverage": "vitest run --coverage",
|
|
24
|
+
"validate:registry": "node scripts/validate-registry.mjs",
|
|
25
|
+
"check:versions": "node scripts/check-versions.mjs",
|
|
26
|
+
"prepublishOnly": "npm run validate:registry && npm run check:versions"
|
|
23
27
|
},
|
|
24
28
|
"keywords": [
|
|
25
29
|
"mcp",
|
|
@@ -48,6 +52,8 @@
|
|
|
48
52
|
"@types/express": "^5.0.0",
|
|
49
53
|
"@types/node": "^20.10.0",
|
|
50
54
|
"@vitest/coverage-v8": "^3.0.0",
|
|
55
|
+
"ajv": "^8.0.0",
|
|
56
|
+
"ajv-formats": "^3.0.1",
|
|
51
57
|
"rimraf": "^5.0.5",
|
|
52
58
|
"tsx": "^4.7.0",
|
|
53
59
|
"typescript": "^5.3.3",
|