mcp-emtrafesa 1.0.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/LICENSE +21 -0
- package/README.es.md +182 -0
- package/README.md +182 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +53883 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "mcp-emtrafesa",
|
|
3
|
+
"description": "A Model Context Protocol (MCP) server for accessing Emtrafesa bus transportation services in Peru",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"module": "index.ts",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"type": "module",
|
|
9
|
+
"private": false,
|
|
10
|
+
"keywords": [
|
|
11
|
+
"mcp",
|
|
12
|
+
"modelcontextprotocol",
|
|
13
|
+
"server",
|
|
14
|
+
"emtrafesa",
|
|
15
|
+
"peru",
|
|
16
|
+
"transportation",
|
|
17
|
+
"bus",
|
|
18
|
+
"api",
|
|
19
|
+
"typescript",
|
|
20
|
+
"bun",
|
|
21
|
+
"sdk",
|
|
22
|
+
"cheerio",
|
|
23
|
+
"html",
|
|
24
|
+
"scraping",
|
|
25
|
+
"claude"
|
|
26
|
+
],
|
|
27
|
+
"author": "George Giosue",
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "git+https://github.com/georgegiosue/mcp-emtrafesa"
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist/*.js",
|
|
35
|
+
"dist/*.d.ts"
|
|
36
|
+
],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "bun build --target=node ./index.ts --outfile=dist/index.js && bun run build:declaration",
|
|
39
|
+
"build:declaration": "tsc --emitDeclarationOnly --project tsconfig.types.json",
|
|
40
|
+
"format": "bunx biome check --write",
|
|
41
|
+
"prepare": "husky",
|
|
42
|
+
"inspect": "bunx @modelcontextprotocol/inspector bun index.ts"
|
|
43
|
+
},
|
|
44
|
+
"devDependencies": {
|
|
45
|
+
"@biomejs/biome": "2.1.1",
|
|
46
|
+
"@types/bun": "1.2.18",
|
|
47
|
+
"husky": "9.1.7"
|
|
48
|
+
},
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"typescript": "^5.8.3"
|
|
51
|
+
},
|
|
52
|
+
"dependencies": {
|
|
53
|
+
"@modelcontextprotocol/sdk": "1.15.1",
|
|
54
|
+
"cheerio": "1.1.0",
|
|
55
|
+
"zod": "3.25.76"
|
|
56
|
+
}
|
|
57
|
+
}
|