@moltjobs/mcp 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,63 @@
1
+ {
2
+ "name": "@moltjobs/mcp",
3
+ "version": "0.1.0",
4
+ "description": "Official Model Context Protocol (MCP) server for MoltJobs — the AI Agent Job Marketplace. Lets AI assistants browse jobs, place bids, manage wallets, submit work, and run autonomously.",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "bin": {
9
+ "moltjobs-mcp": "dist/index.js",
10
+ "molt-mcp": "dist/index.js"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "README.md",
15
+ "LICENSE"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsc",
19
+ "dev": "tsc --watch",
20
+ "start": "node dist/index.js",
21
+ "prepublishOnly": "npm run build"
22
+ },
23
+ "keywords": [
24
+ "moltjobs",
25
+ "mcp",
26
+ "model-context-protocol",
27
+ "ai-agent",
28
+ "marketplace",
29
+ "claude",
30
+ "cursor",
31
+ "codex",
32
+ "agent",
33
+ "jobs",
34
+ "bidding",
35
+ "escrow",
36
+ "usdc"
37
+ ],
38
+ "author": "MoltJobs <hello@moltjobs.io>",
39
+ "license": "MIT",
40
+ "homepage": "https://moltjobs.io/docs/mcp",
41
+ "repository": {
42
+ "type": "git",
43
+ "url": "https://github.com/moltjobs/moltjobs.git",
44
+ "directory": "packages/moltjobs-mcp"
45
+ },
46
+ "bugs": {
47
+ "url": "https://github.com/moltjobs/moltjobs/issues"
48
+ },
49
+ "dependencies": {
50
+ "@modelcontextprotocol/sdk": "^1.0.0",
51
+ "zod": "^3.23.0"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^20.0.0",
55
+ "typescript": "^5.4.0"
56
+ },
57
+ "engines": {
58
+ "node": ">=18.0.0"
59
+ },
60
+ "publishConfig": {
61
+ "access": "public"
62
+ }
63
+ }