MCP.so
登录
O

Ones Wiki Mcp Server

@brianxiadong

关于 Ones Wiki Mcp Server

A Spring AI MCP-based service for retrieving ONES Wiki content and converting it to AI-friendly text format.

基本信息

分类

记忆与知识

传输方式

stdio

发布者

brianxiadong

提交者

Dong Xia

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "ones-wiki": {
      "command": "java",
      "args": [
        "-jar",
        "--ones.host=your-ones-host.com",
        "[email protected]",
        "--ones.password=your-password",
        "target/ones-wiki-mcp-server-0.0.1-SNAPSHOT.jar"
      ],
      "env": {
        "JAVA_OPTS": "-Xmx512m"
      }
    }
  }
}

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is Ones Wiki Mcp Server?

A Spring AI MCP-based service that retrieves ONES Wiki content and converts it to AI-friendly text format. It integrates with the ONES platform and is intended for developers or users who need to extract wiki pages for consumption by large language models or other text-processing tools.

How to use Ones Wiki Mcp Server?

Build the project with Maven (mvn clean package), then configure authentication via application.properties, command-line arguments, or environment variables (ones.host, ones.email, ones.password). Add the server to your MCP client (e.g., Claude Desktop) using the packaged JAR and credentials. Provide a full Wiki page URL to retrieve the page’s content in Markdown.

Key features of Ones Wiki Mcp Server

  • ONES platform authentication support
  • Automatic conversion from Wiki URLs to API endpoints
  • Extracts and formats Wiki page content
  • Outputs AI-friendly Markdown text
  • Configuration via properties file, CLI, or environment variables

Use cases of Ones Wiki Mcp Server

  • Feeding ONES Wiki pages into an AI assistant for summarization or Q&A
  • Converting internal wiki documentation to a portable, structured Markdown format
  • Automating retrieval of wiki content for analysis or archival

FAQ from Ones Wiki Mcp Server

What Java version is required?

Java 17 or higher is required.

How do I authenticate with the ONES platform?

You can provide host, email, and password via application.properties, command-line arguments (e.g., --ones.host=...), or environment variables (ONES_HOST, ONES_EMAIL, ONES_PASSWORD).

What output format does the server produce?

The server converts Wiki HTML to structured Markdown, preserving headings (H1-H6), paragraphs, ordered/unordered lists, tables, image descriptions, and links. Strikethrough content is automatically filtered.

Does the server support HTTPS connections?

Yes, HTTPS connections are supported.

Can I extend the server’s functionality?

Yes, you can add new tool methods to the OnesWikiService class, for example to search wiki pages or batch process multiple pages.

评论

记忆与知识 分类下的更多 MCP 服务器