atlas-mcp-web 0.1.0

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/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "atlas-mcp-web",
3
+ "version": "0.1.0",
4
+ "description": "Give your AI agent the ability to extract clean, structured data from any web page. Articles, products, metadata, tables, contact info, tech stack - all through one MCP server. Part of Atlas — infrastructure for AI agents.",
5
+ "keywords": [
6
+ "mcp",
7
+ "model-context-protocol",
8
+ "claude",
9
+ "anthropic",
10
+ "ai-agents",
11
+ "web-scraping",
12
+ "data-extraction",
13
+ "rag",
14
+ "llm",
15
+ "atlas"
16
+ ],
17
+ "homepage": "https://atlas-agent.dev",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/Mohye24k/atlas.git"
21
+ },
22
+ "license": "MIT",
23
+ "type": "module",
24
+ "main": "./dist/index.js",
25
+ "bin": {
26
+ "atlas-mcp-web": "dist/index.js"
27
+ },
28
+ "files": ["dist", "README.md"],
29
+ "scripts": {
30
+ "build": "tsc",
31
+ "start": "node dist/index.js",
32
+ "dev": "tsx src/index.ts",
33
+ "prepublishOnly": "npm run build"
34
+ },
35
+ "engines": {
36
+ "node": ">=18.0.0"
37
+ },
38
+ "dependencies": {
39
+ "@modelcontextprotocol/sdk": "^1.0.0",
40
+ "cheerio": "^1.0.0",
41
+ "zod": "^3.23.0"
42
+ },
43
+ "devDependencies": {
44
+ "@types/node": "^22.0.0",
45
+ "tsx": "^4.19.0",
46
+ "typescript": "^5.6.0"
47
+ }
48
+ }