DocuMind MCP Server
🌐 DocuMind MCP サーバー
「ドキュメントとデジタルインテリジェンスが出会う場所」
高度なニューラル処理を通じてドキュメント品質分析に革命をもたらす次世代のモデル コンテキスト プロトコル (MCP) サーバー。
⚡ コアシステム
🧠ニューラルドキュメント分析:包括的なREADME評価のための高度なアルゴリズム
🔮ホログラフィックヘッダースキャン:視覚要素のための最先端のSVG分析
🌍多次元言語サポート:言語間のドキュメント検証
💫量子提案エンジン:AIを活用した改善提案
Related MCP server: Lucidity MCP
🚀 システムブートシーケンス
システム要件
Node.js 18歳以上
npm || 糸
コアの初期化
npm installコンパイルマトリックス
npm run build神経発達リンク
リアルタイムのニューラル接続を確立:
npm run watch🛸 操作プロトコル
システム構成
Claude Desktop メインフレームとの統合:
Windowsターミナル:
// %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"documind-mcp-server": {
"command": "/path/to/documind-mcp-server/build/index.js"
}
}
}神経インターフェースコマンド
評価_readme
ドキュメント構造の量子分析を開始します。
パラメータ:
projectPath: ターゲットディレクトリへの神経経路
リクエスト例:
{
name: "evaluate_readme",
arguments: {
projectPath: "/path/to/project"
}
}応答例:
{
content: [
{
type: "text",
text: JSON.stringify({
filePath: "/path/to/project/README.md",
hasHeaderImage: true,
headerImageQuality: {
hasGradient: true,
hasAnimation: true,
// ... other quality metrics
},
score: 95,
suggestions: [
"Consider adding language badges",
// ... other suggestions
]
})
}
]
}🔮 開発マトリックス
デバッグプロトコル
MCP Inspector を通じてニューラル ネットワークにアクセスします。
npm run inspectorトラブルシューティングガイド
よくある問題と解決策
ヘッダー画像が検出されません
SVGファイルが
assets/ディレクトリに配置されていることを確認するSVGファイルに適切なXML構造が含まれていることを検証する
ファイルの権限を確認する
言語バッジが認識されない
バッジがshields.io形式を使用していることを確認する
HTML構造が推奨パターンに従っているか確認する
適切な中心位置合わせを確保する
ビルドエラー
node_modulesをクリアして依存関係を再インストールするTypeScript のバージョンがプロジェクト要件と一致していることを確認する
変更されたファイルの構文エラーをチェックする
MCP 接続の問題
stdioトランスポート構成を確認する
Claude Desktopの設定を確認する
設定で適切なファイルパスを確認する
パフォーマンスの最適化
SVG分析
SVGの複雑さを最小限に抑えて解析を高速化する
効率的なグラデーションとアニメーションを使用する
品質を維持しながらファイルサイズを最適化
READMEスキャン
最適な解析のためにコンテンツを構造化する
推奨されるマークダウンパターンを使用する
バッジの配置ガイドラインに従う
🔬 APIドキュメント
コアクラス
リードミーサービス
README の分析と評価のための主要なサービス。
class ReadmeService {
// Analyzes all README files in a project
async evaluateAllReadmes(projectPath: string): Promise<ReadmeEvaluation[]>
// Evaluates a single README file
private async evaluateReadme(dirPath: string, readmePath: string): Promise<ReadmeEvaluation>
// Evaluates language badge configuration
private evaluateLanguageBadges(content: string): BadgeEvaluation
}SVGサービス
SVG ヘッダー画像分析に特化したサービスです。
class SVGService {
// Evaluates SVG header image quality
public evaluateHeaderImageQuality(imgSrc: string, content: string): HeaderImageQuality
// Checks for project-specific elements in SVG
private checkProjectSpecificImage(svgContent: string, readmeContent: string): boolean
}コアインターフェース
interface ReadmeEvaluation {
filePath: string;
hasHeaderImage: boolean;
headerImageQuality: HeaderImageQuality;
isCentered: {
headerImage: boolean;
title: boolean;
badges: boolean;
};
hasBadges: {
english: boolean;
japanese: boolean;
isCentered: boolean;
hasCorrectFormat: boolean;
};
score: number;
suggestions: string[];
}
interface HeaderImageQuality {
hasGradient: boolean;
hasAnimation: boolean;
hasRoundedCorners: boolean;
hasEnglishText: boolean;
isProjectSpecific: boolean;
}エラー処理
サーバーは包括的なエラー処理を実装します。
try {
const evaluations = await readmeService.evaluateAllReadmes(projectPath);
// Process results
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
return {
content: [{
type: 'text',
text: `Evaluation error: ${errorMessage}`
}],
isError: true
};
}⚡ ライセンス
MIT プロトコルに従って動作します。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server utilizing Claude AI for generating intelligent queries and offering documentation assistance based on API documentation analysis.143MIT
- AlicenseAqualityDmaintenanceA Model Context Protocol server that enhances AI-generated code quality through comprehensive analysis across 10 critical dimensions, helping identify issues before they become problems.189Apache 2.0
- FlicenseNot gradedqualityNot gradedmaintenanceModel Context Protocol server that enables interaction with GitHub repositories, issues, pull requests, and search functionality through natural language.1
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that provides read-only access to GitHub repositories, enabling AI assistants to perform code reviews without write permissions.MIT
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
A Model Context Protocol (MCP) application for automated GitHub PR analysis and issue management.…
An MCP server that gives your AI access to the source code and docs of all public github repos
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Sunwood-ai-labs/documind-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server