@ralioco/mcp
v1.1.1
Published
This server provides a single MCP tool `guardrails` to perform payment validation using the Model Context Protocol (MCP) SDK.
Readme
MCP Server: Payment Validation (TypeScript)
This server provides a single MCP tool guardrails to perform payment validation using the Model Context Protocol (MCP) SDK.
MCP Installation
"ralio": {
"command": "npx",
"args": ["-y", "@ralioco/mcp", "--tools=all"],
}Local Installation
Install dependencies:
npm installMCP configuration
"ralio": {
"command": "node",
"args": ["/{ABS_PATH}/ralio/mcp/build/index.js"]
}Publishing to NPM
To publish a new version of this package to npm:
Build the project:
npm run buildLogin to npm (if not already authenticated):
npm loginUpdate the version in
package.json:npm version patch # for bug fixes npm version minor # for new features npm version major # for breaking changesPublish the package:
npm publish --access publicNote: The
--access publicflag is required for scoped packages (like@ralioco/mcp) to be published publicly.
Guardrails Tool
- Tool Name:
guardrails - Parameters:
amount(number)origin(string)beneficiary(string)reference(string)
- Returns:
- result:
approve|reject - reason
- result:
This tool is exposed via the MCP protocol and can be called by any MCP-compatible client.
