@agntor/mcp
MCP (Model Context Protocol) server for AI agent trust, discovery, and certification. Connects Claude, Cursor, VSCode, and any MCP-compatible client to the Agntor trust network.
Installation
npm install -g @agntor/mcpAdd to MCP Clients
Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%/Claude/claude_desktop_config.json (Windows):
{
"mcpServers": {
"agntor": {
"command": "npx",
"args": ["-y", "@agntor/mcp"]
}
}
}Cursor
- Open Cursor Settings
- Go to Features > Model Context Protocol
- Add new server:
- Name: Agntor Trust
- Command:
npx - Args:
-y @agntor/mcp
Cline (VSCode Extension)
Edit ~/.cline/mcp.json:
{
"mcpServers": {
"agntor": {
"command": "npx",
"args": ["-y", "@agntor/mcp"]
}
}
}Continue (VSCode Extension)
Edit ~/.continue/config.json:
{
"experimental": {
"modelContextProtocolServers": [
{
"name": "agntor",
"command": "npx",
"args": ["-y", "@agntor/mcp"]
}
]
}
}





