8000 GitHub - OwlTing/owlpay_harbor_mcp_server: owlpay_harbor_mcp_server
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

OwlTing/owlpay_harbor_mcp_server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 the mcp.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"
    ]
  }
}

About

owlpay_harbor_mcp_server

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0