Skip to main content
Glama
TeXmeijin

Manalink MCP Server

by TeXmeijin

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:

  1. Obtain subject master : Obtain master of subject name and subject ID

  2. Get feature master : Get the master of course features (dynamically obtained from API)

  3. Get grade master : Get master of grade name and ID

  4. 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 install

How to use

Development Mode

npm run dev

Production Mode

npm run build
npm start

Integration with Claude for Desktop

To use it with Claude for Desktop, add the setting to the claude_desktop_config.json file.

  1. Open the Claude for Desktop configuration file

code ~/Library/Application\ Support/Claude/claude_desktop_config.json
  1. Add the following settings

{
    "mcpServers": {
        "manalink": {
            "command": "node",
            "args": [
                "/絶対パス/manalink-mcp/dist/index.js"
            ]
        }
    }
}
  1. 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.

  1. Run the build and then run the inspector

npm run build
npx @modelcontextprotocol/inspector node dist/index.js

license

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-markdown

How 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);

Available Tools

4 tools
get_course_featuresB

コース特徴マスタを取得します。このマスタの取得を通じて、特徴のラベルとIDの対応を取得します。

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves a master list for label-ID correspondence, implying a read-only operation, but does not disclose other behavioral traits such as authentication requirements, rate limits, error conditions, or whether the data is cached or real-time. The description is minimal and misses key operational details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and front-loaded, consisting of two sentences that directly state the tool's purpose and outcome. There is no wasted text, and it efficiently communicates the essential information without redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 0 parameters, no annotations, and no output schema, the description is minimally complete for a simple retrieval tool. It explains what is retrieved (course feature master for label-ID mapping) but lacks details on output format, error handling, or integration context. For a tool with no structured metadata, it meets basic needs but could be more informative.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description does not add parameter details beyond the schema, but since there are no parameters, a baseline score of 4 is appropriate as it adequately addresses the tool's function without unnecessary complexity.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'コース特徴マスタを取得します' (retrieves course feature master) and explains the outcome: '特徴のラベルとIDの対応を取得します' (obtains correspondence between feature labels and IDs). It specifies the resource (course feature master) and the verb (retrieve), though it doesn't explicitly differentiate from sibling tools like get_grade_master or get_subject_master, which appear to be similar retrieval operations for different resources.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It does not mention sibling tools (e.g., get_grade_master, get_subject_master, search_teachers_advanced) or specify contexts where this tool is appropriate, such as needing label-ID mappings for course features. Usage is implied by the purpose but lacks explicit instructions or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_grade_masterB

学年マスタを取得します。このマスタの取得を通じて、学年のラベルとIDの対応を取得します。

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a retrieval operation ('取得します'), which implies read-only behavior, but doesn't address other important aspects like authentication requirements, rate limits, error conditions, or what happens when no data exists. For a tool with zero annotation coverage, this leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is appropriately concise with two sentences that directly address the tool's function and purpose. The first sentence states the action, the second explains the value. There's no wasted language or unnecessary elaboration, though it could be slightly more structured for maximum clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (no parameters, no output schema, no annotations), the description is adequate but has clear gaps. It explains what the tool does and what information it provides, but doesn't address behavioral aspects like error handling or performance characteristics. For a read-only master data retrieval tool, this is minimally viable but could be more complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters with 100% schema description coverage, so the baseline is 4. The description appropriately doesn't discuss parameters since none exist, and it correctly focuses on what the tool returns (grade label-to-ID mappings) rather than input requirements.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: retrieving a 'grade master' (学年マスタ) to obtain mappings between grade labels and IDs. It uses specific verbs ('取得します' - retrieves/gets) and identifies the resource (grade master). However, it doesn't explicitly differentiate from sibling tools like get_subject_master, which appears to be a similar master data retrieval tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, appropriate contexts, or comparisons with sibling tools like get_subject_master or search_teachers_advanced. The only implied usage is when grade label-to-ID mappings are needed, but this is basic functional information rather than true usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_subject_masterB

科目マスタを取得します。このマスタの取得を通じて、科目のラベルとIDの対応を取得します。

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool '取得します' (gets/retrieves), implying a read-only operation, but doesn't clarify aspects like authentication needs, rate limits, error conditions, or whether it returns all data or requires filtering. For a tool with zero annotation coverage, this leaves significant gaps in understanding its behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two concise sentences in Japanese, front-loaded with the core purpose and followed by a clarifying detail about the output. Every word earns its place, with no redundancy or unnecessary elaboration, making it efficient and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (0 parameters, no output schema, no annotations), the description is adequate but has clear gaps. It explains the purpose and output semantics, which is sufficient for basic use. However, it lacks behavioral context (e.g., read-only nature, potential constraints) and usage guidelines relative to siblings, making it minimally viable but not fully comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description adds value by explaining the semantic output: '科目のラベルとIDの対応を取得します' (obtains correspondence between subject labels and IDs), which clarifies what the tool returns beyond just 'subject master'. This compensates for the lack of an output schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: '科目マスタを取得します' (get subject master) and specifies what is obtained: '科目のラベルとIDの対応' (correspondence between subject labels and IDs). It distinguishes the resource (subject master) and the specific mapping provided. However, it doesn't explicitly differentiate from sibling tools like get_grade_master or get_course_features, which likely retrieve different master data types.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention sibling tools (e.g., get_grade_master for grade data) or specify contexts where this tool is appropriate (e.g., when needing label-ID mappings for subjects). Usage is implied only by the purpose statement, with no explicit when/when-not instructions or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_teachers_advancedC

科目、学年、特徴、ソート順、指導期間を指定して先生を検索します

ParametersJSON Schema
NameRequiredDescriptionDefault
course_feature_idNo特徴ID
desired_teaching_periodNo指導期間 (monthly: 長期, once: 短期)
grade_idsNo学年IDの配列
sortNoソート順
subject_idsNo科目IDの配列

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It only states what parameters can be specified for searching, without mentioning whether this is a read-only operation, what permissions might be required, how results are returned (pagination, format), or any rate limits. For a search tool with 5 parameters and no annotation coverage, this is inadequate.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence in Japanese that directly states the tool's function with zero wasted words. It's appropriately sized and front-loaded with the core purpose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a search tool with 5 parameters, no annotations, and no output schema, the description is incomplete. It doesn't explain the result format, pagination, error conditions, or how empty/multiple parameters affect the search. The agent lacks sufficient context to use this tool effectively beyond basic parameter passing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, so all parameters are documented in the schema itself. The description lists the parameter categories (subject, grade, features, sort order, teaching period) but doesn't add meaningful semantic context beyond what the schema already provides, such as explaining how these filters interact or providing usage examples.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose as searching for teachers with specific criteria (subject, grade, features, sort order, teaching period), which is a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like get_course_features, get_grade_master, or get_subject_master, which appear to be metadata retrieval tools rather than teacher search tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention any prerequisites, constraints, or comparison with sibling tools, leaving the agent to infer usage context solely from the tool name and parameters.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

B3.4/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: three tools retrieve specific master data (course features, grade, subject), while the fourth performs an advanced search combining those elements. There is no overlap in functionality, making tool selection straightforward for an agent.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with 'get_' for retrieval operations and 'search_' for the search function. The naming is uniform and predictable across all four tools, enhancing readability and usability.

Tool Count4/5

With 4 tools, the count is reasonable for a server focused on educational data management. It covers core master data retrieval and a search function, though it might feel slightly thin if more operations (e.g., updates or deletions) are expected in the domain.

Completeness3/5

The tools provide good coverage for retrieving master data and searching teachers, but there are notable gaps: no CRUD operations for creating, updating, or deleting records, which limits full lifecycle management. The search tool is comprehensive, but the set lacks broader operational capabilities.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    A 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.
    88
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    A comprehensive Model Context Protocol server providing educational resources and curriculum planning support with intelligent filtering across multiple educational APIs.
    11
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    A 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
  • A
    license
    Not graded
    quality
    D
    maintenance
    Model Context Protocol servers for Microsoft 365, enabling AI assistants to interact with Calendar, Contacts, OneDrive, Outlook, and SharePoint via the Microsoft Graph API.
    MIT

Latest Blog Posts

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