ヨミタス
サイトのページを読み込んで、AI アプリがつなげる形(MCP サーバー)にして配信する無料のサービスです。(yomitasu.jp の内容を検索して答える。ヨミタス経由)
Should I use this
Quality & Safety
Findings (5)
- LOWin search
- LOWin fetch
- LOWin list_pages
- LOWin site_overview
- LOWin fetch
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
Install
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"yomitasu-jp": {
"url": "https://mcp.yomitasu.jp/s/yomitasu-jp/mcp"
}
}
}Remote endpoints
https://mcp.yomitasu.jp/s/yomitasu-jp/mcpstreamable-httpWhat it can do
Tool inventory
Tools (6)
🟢search(query)
「ヨミタス」のページから、言葉に当てはまる箇所を抜粋つきで探します。ヨミタスの仕組み、AI アプリへのつなぎ方、料金(すべて無料)、よくある質問、運営方針、利用規約、プライバシーポリシー、運営会社を探せます。ヨミタスについて質問されたら、まずこれを使ってください。登録されているサイトの紹介ページも探せますが、そのサイトの中身は、そのサイト用の MCP サーバーで調べてください。
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "探したい言葉(例: 料金 支払い方法)"
}
},
"required": [
"query"
]
}Output Schema
{
"type": "object",
"properties": {
"results": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"url": {
"type": "string"
},
"text": {
"type": "string"
}
},
"required": [
"id",
"title",
"url"
]
}
}
},
"required": [
"results"
]
}🟢fetch(id)
「ヨミタス」のページの本文を、最初から最後まで返します。利用規約やプライバシーポリシーの条文、使い方の手順を、言い換えずに正確に確かめるときに使います。
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "探した結果の id(ページの URL)。ページの URL かパスでも可(日本語のままでも可)"
}
},
"required": [
"id"
]
}Output Schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"title": {
"type": "string"
},
"text": {
"type": "string"
},
"url": {
"type": "string"
},
"metadata": {
"type": "object"
}
},
"required": [
"id",
"title",
"text",
"url"
]
}🟢list_pages(limit, offset)
「ヨミタス」に読み込まれているページの一覧(タイトルと URL)を返します。/guide/ は使い方、/faq/ はよくある質問、/pricing/ は料金、/terms/・/privacy/・/policy/ は規約と方針、/sites/ の下は登録されているサイトの紹介ページです。
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 200,
"default": 50
},
"offset": {
"type": "integer",
"minimum": 0,
"default": 0
}
}
}🟢site_overview
「ヨミタス」の概要を返します。サイトのページを読み込んで、AI アプリがつなげる形(MCP サーバー)にして配信する無料のサービスです。サイトの持ち主がタグを 1 行置くだけで登録できます。どんなサービスかを最初に知りたいときに使います。
Input Schema
{
"type": "object",
"properties": {}
}🟢search_pages(query, limit)
「ヨミタス」(yomitasu.jp)の以前の名前の機能です(すでにつないでいる人のために残しています)。search と同じようにサイトの中を探しますが、返す形が違います。新しく使うときは search を使ってください。
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "探したい言葉(例: 料金 支払い方法)"
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 20,
"default": 5
}
},
"required": [
"query"
]
}🟢get_page(url)
「ヨミタス」(yomitasu.jp)の以前の名前の機能です(すでにつないでいる人のために残しています)。fetch と同じようにページの本文を返しますが、返す形が違います。新しく使うときは fetch を使ってください。
Input Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "ページの URL かパス(日本語のままでも可)"
}
},
"required": [
"url"
]
}Community
Evidence