CiNii Server
БесплатноНе проверенEnables searching and retrieving academic articles from CiNii, Japan's largest bibliographic database, with support for advanced filtering, sorting, and search
Описание
Enables searching and retrieving academic articles from CiNii, Japan's largest bibliographic database, with support for advanced filtering, sorting, and search range options.
README
Setup
uv sync --no-dev
Please set the directory path and the CINII_APP_ID.
{
"mcpServers": {
"cinii-mcp-server": {
"command": "uv",
"args": [
"--directory",
"<YOUR_MCP_SERVER_DIRECTORY>",
"run",
"server.py"
],
"env": {
"CINII_APP_ID": "<YOUR_CINII_APP_ID>"
},
}
}
}
API Key Registration
- Access CiNii API Registration
- Find and access the link for "CiNii Web API Developer Registration".
- Upon accessing, a registration form will appear. Fill in the necessary information and submit your application.
- After submission, your Application ID will be sent to you via email.
Usage
Python API
from lib.cinii import CiNiiClient, SortOrder, SearchRange
client = CiNiiClient(appid="your_app_id")
# Basic search
results = client.advanced_search({
"query": "機械学習",
"max_results": 10
})
# Advanced search with filters
results = client.advanced_search({
"query": "Deep Learning",
"max_results": 20,
"sortorder": SortOrder.PUBLICATION_YEAR_DESC, # Publication year, descending
"range": SearchRange.HAS_BODY_IN_CINII, # The full text is available on CiNii.
"year_from": 2020,
"year_to": 2024
})
# Or you can also use numeric values for the search Options
results = client.advanced_search({
"query": "Deep Learning",
"max_results": 20,
"sortorder": 1, # Publication year, descending
"range": 1, # The full text is available on CiNii.
"year_from": 2020,
"year_to": 2024
})
Sort Order Options
SortOrder.PUBLICATION_YEAR_DESC(1): Publication year descendingSortOrder.PUBLICATION_YEAR_ASC(2): Publication year ascendingSortOrder.TITLE_DESC(3): Title descendingSortOrder.TITLE_ASC(4): Title ascendingSortOrder.JOURNAL_DESC(5): Journal descendingSortOrder.JOURNAL_ASC(6): Journal ascendingSortOrder.CITATION_DESC(7): Citation count descending
Search Range Options
SearchRange.ALL(0): AllSearchRange.HAS_BODY_IN_CINII(1): Body exists in CiNiiSearchRange.HAS_BODY_OR_LINK(2): Body exists in CiNii, or link exists in linked services
Установка CiNii Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/suzuuuuu09/cinii-mcp-serverFAQ
CiNii Server MCP бесплатный?
Да, CiNii Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для CiNii Server?
Нет, CiNii Server работает без API-ключей и переменных окружения.
CiNii Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить CiNii Server в Claude Desktop, Claude Code или Cursor?
Открой CiNii Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
wenb1n-dev/SmartDB_MCP
A universal database MCP server supporting simultaneous connections to multiple databases. It provides tools for database operations, health analysis, SQL optim
автор: wenb1n-devPostgres Server
This server enables interaction with PostgreSQL databases through the Model Context Protocol, optimized for the AWS Bedrock AgentCore Runtime. It provides tools
автор: madhurprashPostgres
Query your database in natural language
автор: AnthropicPostgreSQL
Read-only database access with schema inspection.
автор: modelcontextprotocolCompare CiNii Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории data
