@agishub/mcp 2.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +117 -0
  3. package/dist/stdio.js +33186 -0
  4. package/package.json +71 -0
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@agishub/mcp",
3
+ "version": "2.1.0",
4
+ "mcpName": "com.agishub/mcp",
5
+ "description": "AgisHub MCP — pay-per-call tools for AI agents (x402, USDC on Base). Timezone, world clock, date math & scheduling; free via MCP, paid via HTTP. No API key.",
6
+ "keywords": [
7
+ "timezone",
8
+ "mcp",
9
+ "model context protocol",
10
+ "world clock",
11
+ "date math",
12
+ "meeting scheduler",
13
+ "dst",
14
+ "iana",
15
+ "timezone converter",
16
+ "ai agents"
17
+ ],
18
+ "license": "MIT",
19
+ "author": "AgisHub (agishub.com)",
20
+ "publishConfig": { "access": "public" },
21
+ "type": "module",
22
+ "bin": {
23
+ "agishub-mcp": "dist/stdio.js"
24
+ },
25
+ "main": "dist/stdio.js",
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "repository": {
30
+ "type": "git",
31
+ "url": "git+https://github.com/agishub/agishub.git"
32
+ },
33
+ "homepage": "https://github.com/agishub/agishub#readme",
34
+ "bugs": {
35
+ "url": "https://github.com/agishub/agishub/issues"
36
+ },
37
+ "scripts": {
38
+ "dev": "wrangler dev",
39
+ "deploy": "wrangler deploy",
40
+ "build": "esbuild src/stdio.ts --bundle --platform=node --format=esm --target=node18 --outfile=dist/stdio.js --banner:js='#!/usr/bin/env node' && chmod +x dist/stdio.js",
41
+ "typecheck": "tsc --noEmit",
42
+ "test": "node --import tsx --test test/*.test.ts",
43
+ "prepublishOnly": "npm run build",
44
+ "cf-typegen": "wrangler types"
45
+ },
46
+ "dependencies": {
47
+ "@coinbase/x402": "^2.1.0",
48
+ "@modelcontextprotocol/sdk": "^1.12.0",
49
+ "@x402/core": "^2.18.0",
50
+ "@x402/evm": "^2.18.0",
51
+ "@x402/fetch": "^2.18.0",
52
+ "@x402/hono": "^2.18.0",
53
+ "agents": "^0.0.80",
54
+ "chrono-node": "^2.7.7",
55
+ "countries-and-timezones": "^3.7.2",
56
+ "hono": "^4.12.29",
57
+ "node-html-parser": "^7.1.0",
58
+ "viem": "^2.55.0",
59
+ "x402-hono": "^1.2.0",
60
+ "zod": "^3.23.8",
61
+ "zod-to-json-schema": "^3.24.1"
62
+ },
63
+ "devDependencies": {
64
+ "@cloudflare/workers-types": "^5.20260708.1",
65
+ "esbuild": "^0.24.0",
66
+ "tsx": "^4.19.0",
67
+ "typescript": "^5.6.0",
68
+ "wrangler": "^4.0.0",
69
+ "x402-fetch": "^1.2.0"
70
+ }
71
+ }