OwlTing/owlpay_harbor_mcp_server
If you are the rightful owner of owlpay_harbor_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 OwlPay Harbor MCP Server provides documentation search capabilities for large language models (LLMs), facilitating faster system integration.
search_owlpay_harbor_documentation
Search Owlpay Harbor documentation using English keywords.
OwlPay Harbor MCP Server
Overview
The OwlPay Harbor 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_owlpay_harbor_documentation
- Search Owlpay Harbor documentation.
- Input:
query
(string): Search keywords in English.
- Returns: Query results as array of objects
Building
Docker:
docker build -t mcp/owlpay_harbor . --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": {
"owlpay_harbor": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/owlpay_harbor"
]
}
}
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": {
"owlpay_harbor": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/owlpay_harbor"
]
}
}
}
}
Usage with Cursur
For manual installation, open Cursor Settings
-> Add new global MCP server
# Add the server to your setting.json
"mcpServers": {
"owlpay_harbor": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"mcp/owlpay_harbor"
]
}
}