MCP.so
Sign In
O

Ones Wiki Mcp Server

@brianxiadong

About Ones Wiki Mcp Server

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

Basic information

Category

Memory & Knowledge

Transports

stdio

Publisher

brianxiadong

Submitted by

Dong Xia

Config

Add this server to your MCP-compatible client using the configuration below.

{
  "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"
      }
    }
  }
}

Tools

No tools detected

We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.

Overview

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.

Comments

More Memory & Knowledge MCP servers