OwlTing/paynow_component_docs_mcp_server
If you are the rightful owner of paynow_component_docs_mcp_server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The PayNow Component MCP Server provides documentation search capabilities for large language models (LLMs), facilitating efficient system integration.
search_paynow_component_documentation
Search PayNow Component documentation using English keywords.
PayNow Component MCP Server
Overview
The PayNow Component MCP Server provides documentation search capabilities. This server enables large language models (LLMs) to directly retrieve documentation, accelerating system integration.
Components
Tools
Query Tools
search_paynow_component_documentation
- Search PayNow Component documentation.
- Input:
query
(string): Search keywords in English.
- Returns: Query results as array of objects
Building
Docker:
docker build -t mcp/paynow_component . --no-cache
Usage with Claude Desktop
Docker
For manual installation, open Settings
-> Developer
-> Edit Config
, and add the following JSON block to your claude_desktop_config.json
in Claude Desktop.
# Add the server to your claude_desktop_config.json
"mcpServers": {
"paynow_component": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/paynow_component"
]
}
}
Usage with VS Code
For manual installation, add the following JSON block to your User Settings (JSON) file in VS Code. You can do this by pressing Ctrl + Shift + P
and typing Preferences: Open Settings (JSON)
.
Optionally, you can add it to a file called .vscode/mcp.json
in your workspace. This will allow you to share the configuration with others.
Note that the
mcp
key is needed when using themcp.json
file.
Docker
{
"mcp": {
"servers": {
"paynow_component": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/paynow_component"
]
}
}
}
}
Usage with Cursur
For manual installation, open Cursor Settings
-> Add new global MCP server
# Add the server to your setting.json
"mcpServers": {
"paynow_component": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/paynow_component"
]
}
}