Manalink MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Manalink MCP Serverfind math tutors for middle school students"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Manalink MCP Server
Manalink's Model Context Protocol (MCP) server implementation, allowing AI assistants to use features such as teacher search.
function
This MCP server provides the following tools:
Obtain subject master : Obtain master of subject name and subject ID
Get feature master : Get the master of course features (dynamically obtained from API)
Get grade master : Get master of grade name and ID
Teacher search (detailed) : Search for teachers by detailed parameters such as subject ID, grade ID, etc.
Related MCP server: OpenEdu MCP Server
Prerequisites
Node.js 18+
npm or yarn
install
# リポジトリのクローン
git clone [リポジトリURL]
cd manalink-mcp
# 依存関係のインストール
npm installHow to use
Development Mode
npm run devProduction Mode
npm run build
npm startIntegration with Claude for Desktop
To use it with Claude for Desktop, add the setting to the claude_desktop_config.json file.
Open the Claude for Desktop configuration file
code ~/Library/Application\ Support/Claude/claude_desktop_config.jsonAdd the following settings
{
"mcpServers": {
"manalink": {
"command": "node",
"args": [
"/絶対パス/manalink-mcp/dist/index.js"
]
}
}
}Restart Claude for Desktop
MCP Tools
1. Obtaining subject master
// ツール名: get_subject_master
// パラメータ: なし2. Obtaining feature master data
// ツール名: get_course_features
// パラメータ: なし3. Obtain grade master data
// ツール名: get_grade_master
// パラメータ: なし4. Teacher search (detailed)
// ツール名: search_teachers_advanced
// パラメータ:
// - subject_ids: 科目IDの配列(オプション)
// - grade_ids: 学年IDの配列(オプション)
// - course_feature_id: 特徴ID(オプション)
// - sort: ソート順(オプション)[pr, certification, rating, lesson_count, latest]
// - desired_teaching_period: 指導期間(オプション)[monthly, once]How to Test
You can use MCP Inspector to verify.
Run the build and then run the inspector
npm run build
npx @modelcontextprotocol/inspector node dist/index.jslicense
MIT
HTML to Markdown conversion feature
It implements a function to convert HTML content obtained from Manalink into Markdown format.
How to install
npm install node-html-markdownHow to use
import { convertHtmlToMarkdown } from './utils/api';
// HTMLからMarkdownへの変換
const html = `
<div>
<h1>マナリンク</h1>
<p>オンライン家庭教師プラットフォーム</p>
<ul>
<li><a href="/about">サービスについて</a></li>
<li><a href="/teachers">先生を探す</a></li>
</ul>
</div>
`;
const markdown = convertHtmlToMarkdown(html);
console.log(markdown);Conversion results
The above HTML will generate the following markdown:
# マナリンク
オンライン家庭教師プラットフォーム
* [サービスについて](/about)
* [先生を探す](/teachers)Markdown conversion of teacher search results
The Teacher Search API allows you to retrieve search results in both HTML and Markdown formats:
import { searchTeachers } from './utils/api';
// 数学の中学生を教えられる先生を検索
const result = await searchTeachers({
subject_ids: [2], // 数学
grade_ids: [4], // 中学1年生
sort: 'rating'
});
// HTML形式の検索結果
console.log(result.bodyContent);
// Markdown形式の検索結果
console.log(result.markdown);Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseNot gradedqualityAmaintenanceA Model Context Protocol server that enhances AI agents by providing deep semantic understanding of codebases, enabling more intelligent interactions through advanced code search and contextual awareness.88MIT- AlicenseNot gradedqualityDmaintenanceA comprehensive Model Context Protocol server providing educational resources and curriculum planning support with intelligent filtering across multiple educational APIs.10MIT
- AlicenseNot gradedqualityDmaintenanceA Model Context Protocol server that provides AI assistants with direct access to local document collections through full-text search, supporting multiple formats and hierarchical collections.MIT
- AlicenseNot gradedqualityBmaintenanceModel Context Protocol servers for Microsoft 365, enabling AI assistants to interact with Calendar, Contacts, OneDrive, Outlook, and SharePoint via the Microsoft Graph API.MIT
Related MCP Connectors
A Model Context Protocol server for Wix AI tools
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Connect AI agents to Replynodes over the Model Context Protocol.
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/TeXmeijin/manalinkMCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server