@agntor/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,72 @@
1
+ {
2
+ "name": "@agntor/mcp",
3
+ "version": "0.1.0",
4
+ "mcpName": "io.github.agntor/trust",
5
+ "description": "Official Agntor MCP Server for agent discovery and certification",
6
+ "type": "module",
7
+ "main": "dist/index.js",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/index.js"
11
+ }
12
+ },
13
+ "publishConfig": {
14
+ "access": "public"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "keywords": [
22
+ "agntor",
23
+ "mcp",
24
+ "model-context-protocol",
25
+ "agent",
26
+ "trust",
27
+ "audit",
28
+ "certification",
29
+ "ai-agents"
30
+ ],
31
+ "author": "Agntor Team",
32
+ "license": "MIT",
33
+ "repository": {
34
+ "type": "git",
35
+ "url": "https://github.com/Garinmckayl/agntor.git",
36
+ "directory": "packages/mcp"
37
+ },
38
+ "bugs": {
39
+ "url": "https://github.com/Garinmckayl/agntor/issues"
40
+ },
41
+ "homepage": "https://github.com/Garinmckayl/agntor/tree/main/packages/mcp#readme",
42
+ "engines": {
43
+ "node": ">=18.0.0"
44
+ },
45
+ "bin": {
46
+ "agntor-mcp-server": "./dist/server.js"
47
+ },
48
+ "scripts": {
49
+ "build": "tsup",
50
+ "dev": "node --trace-uncaught --loader ts-node/esm src/server.ts",
51
+ "test-dev": "node --loader ts-node/esm src/test.ts",
52
+ "start": "node dist/server.js",
53
+ "test": "node --test",
54
+ "clean": "rm -rf dist",
55
+ "prepublishOnly": "npm run build"
56
+ },
57
+ "dependencies": {
58
+ "@agntor/sdk": "^0.2.0",
59
+ "@modelcontextprotocol/sdk": "^1.0.4",
60
+ "dotenv": "^16.4.5",
61
+ "express": "^4.21.2",
62
+ "zod": "^3.24.1"
63
+ },
64
+ "devDependencies": {
65
+ "@types/express": "^4.17.21",
66
+ "@types/node": "^22.10.0",
67
+ "esbuild": "^0.19.12",
68
+ "ts-node": "^10.9.2",
69
+ "tsup": "^8.5.1",
70
+ "typescript": "^5.7.0"
71
+ }
72
+ }