home / mcp / nicepay mcp server
MCP server that indexes NicePay guidance and provides search, endpoint viewing, code samples, and SDK method guidance.
Configuration
View docs{
"mcpServers": {
"faithcoderlab-nicepay-mcp": {
"command": "node",
"args": [
"/path/to/mcp-server/dist/index.js"
]
}
}
}You run a dedicated MCP server that lets you search and view NicePay developer guides, inspect API endpoints, view code samples, and learn how to use the JavaScript SDK. This server makes it easy to work with NicePay documentation from within your MCP-enabled IDEs and tools.
You connect an MCP client to this server to search documents, view API details, fetch code samples, and explore SDK methods. Use clear keywords to locate content such as payment window, cancellation, webhooks, or API references. When you want to see a specific APIโs details, request the endpointโs method, URL, parameters, and a sampleโthen review corresponding code samples in your preferred language. For JS SDK guidance, look up method names like requestPay, cancelPay, or AUTHNICE.requestPay to understand usage and parameters.
{
"mcpServers": {
"nicepay": {
"command": "node",
"args": ["/path/to/mcp-server/dist/index.js"]
}
}
}During development you can run the server locally to test changes. Start the server in development mode to enable live updates and faster iteration.
Build and start the server for production use. First build the TypeScript sources, then start the built application.
Searches NicePay developer guides by keyword to locate relevant documents.
Retrieves detailed information about a specific API endpoint, including method, URL, parameters, and samples.
Provides code samples for a given topic and language.
Shows usage and parameter information for JS SDK methods.