@skyscraper083/knowledge-mcp-server
v0.2.0
Published
MCP stdio server (npx) that bridges to MindHorizon knowledge search HTTP API
Readme
@skyscraper083/knowledge-mcp-server
An MCP stdio server intended for non-technical end users.
It runs locally via npx, and forwards tool calls to a MindHorizon backend HTTP endpoint.
Environment variables
BASE_URL: backend base URL (default:http://localhost:8000)MCP_USER_NAME: username (maps topublic.user_profiles.username)MCP_ACCESS_KEY: access key (maps topublic.user_profiles.access_key)
Publishing (maintainers)
This package is intended to be consumed via npx, so it must be published to npm.
cd packages/yazuishou-knowledge-mcp-server
npm login
npm publishVerify:
npm view @skyscraper083/knowledge-mcp-server version
npx -y @skyscraper083/knowledge-mcp-server --helpClaude Desktop config example
type = "stdio"
command = "npx"
args = ["-y", "@skyscraper083/knowledge-mcp-server", "--stdio"]
[env]
BASE_URL = "https://YOUR_BACKEND_HOST"
MCP_USER_NAME = "{your user name}"
MCP_ACCESS_KEY = "{your access key}"Tool
search_knowledge_with_images(project_name, query, max_text_results=5, max_image_results=3) -> str- Returns a JSON string:
text_results: list of{ content, metadata, type: "text" }image_results: list of image dicts includingimage_urltotal_text,total_images
- Returns a JSON string:
