Skip to main content
Glama
citarium

hispanic-legacy

Hispanic Legacy — MCP 服务器

西班牙对世界科学、探索与文化的贡献,来源严谨

一个基于精选知识图谱的远程 MCP 服务器。它返回的每一条论断都绑定到已注册的来源:工具返回的论断附带引用和置信度,因此智能体可以展示其依据,而非凭空断言。

无需安装任何内容。它是一个托管的可流式 HTTP 端点:

https://hispanic-legacy.com/mcp

添加到客户端

Claude Code

claude mcp add --transport http hispanic-legacy https://hispanic-legacy.com/mcp

Claude Desktop / 任何读取 mcpServers 的客户端

{
  "mcpServers": {
    "hispanic-legacy": {
      "type": "streamable-http",
      "url": "https://hispanic-legacy.com/mcp"
    }
  }
}

无需 API 密钥,无需账户,无需认证。只读。

无需任何客户端即可验证其能否回答:

curl -s https://hispanic-legacy.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -H 'mcp-protocol-version: 2025-06-18' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'

Related MCP server: Ek-Chuah MCP

工具

共八个,每个都带有 outputSchema,每个都返回 structuredContent

工具

参数

功能

get_overview

语料库概览:此实例知道什么、按类型统计的数量、已发布的标签、新鲜度。到达时从这里开始,如果你还不知道这个语料库能否回答你的问题。

search

query, limit?

对知识图谱进行全文搜索。对重音和撇号不敏感,因此可以用用户自己的话查询;每条命中都带有其相关度分数和匹配的字段。

answer

question

从语料库回答问题。返回匹配对象的论断及其来源和置信度——绝不返回无来源的答案

get_entity

id

按 id 获取一个知识对象,包含其论断以及每条论断引用的来源。

get_topic

tag

列出带有某个标签的知识对象(主题是有内容支撑的标签)。

get_related

id

对象的图邻居:出向和入向关系,每条都带有其关系类型。

get_sources

object_id?

整个来源注册表,或仅一个对象引用的来源。在信任语料库之前用它来评估。

get_latest

limit?

最近验证的知识对象——一个新鲜度信号。

预期路径是 get_overviewsearchanswerget_entityget_relatedget_overview 的存在是因为刚到达的智能体需要知道这个语料库能否提供帮助——它花费一次调用去猜测之前。

语料库内容

知识对象

307

已注册来源

403

已发布主题

301

类型

对象数

实体

287

对比

11

指南

5

术语表

3

常见问题

1

主题内容:巴尔米斯远征与早期公共卫生、制图与航海、植物学与美洲远征、采矿与冶金、大学与档案馆,以及黑色传说的史学——证据,而非论战。

它被构建来回答的问题

  • 1803 年天花疫苗究竟是如何被运过大西洋的?

  • 贸易之家用它收集的海图做了什么?

  • 关于黑色传说的哪些论断基于原始来源,哪些不是?

答案实际长什么样

对在线端点的一次真实调用——用 "天花疫苗是如何被运过大西洋的" 调用 answer——返回这个 structuredContent(已裁剪):

{
  "answered": true,
  "entity": {
    "id": "keeping-the-vaccine-alive-in-spanish-america",
    "name": "Keeping the vaccine alive: vaccine boards, conservators and human reservoirs in Spanish America, 1805-1815",
    "evidence_tier": "secondary",
    "confidence": 0.8,
    "last_verified": "2026-08-12",
    "canonical_url": "https://hispanic-legacy.com/k/keeping-the-vaccine-alive-in-spanish-america"
  },
  "claims": [
    {
      "text": "A colonial vaccine board published its own numbers, and they survive in print. The Semanario of Bogotá carried in 1808 a \"Noticia del número de personas que se han vacunado en esta capital…\"",
      "sources": [{ "title": "Semanario de la Nueva Granada, publicada por una sociedad de patriotas Granadinos, bajo la dirección de Francisco José de Caldas" }]
    }
  ]
}

注意随答案一起返回的内容:证据等级置信度最后验证日期,以及论断背后的来源——不是智能体需要解析的散文,而是它可以直接操作的字段。智能体可以拒绝使用薄弱的论断,或直接引用原始来源。

当语料库无法回答时,answeredfalse。它不会即兴编造,并且未命中的情况会被记录,以便填补空白。

机器可读的界面

MCP 端点是多个界面之一。同一个语料库也以纯文件形式提供,智能体可以直接读取:

界面

说明

/llms.txt

索引,text/plain 格式

/llms-full.txt

整个语料库,一个文件

/ai-index.json

此实例发布的每个界面及其内容类型

/api/index.json

每个知识对象一个 JSON 文档

/api/sources.json

完整的来源注册表

/.well-known/mcp/server.json

此服务器的清单

每个知识对象在同一个 id 下都有一个人类可读页面和一个机器孪生页面,规范 URL 在所有界面中一致。

集成前值得了解的行为

  • POST 所有其他方法都以 405 响应,并带有 Allow: POST, OPTIONS 头。

  • 速率限制: 每个客户端每分钟 120 次请求,在共享存储中计数,并在每个响应上以 RateLimit-LimitRateLimit-RemainingRateLimit-Reset 发布(三者均通过 CORS 暴露)。它开放失败:如果存储不可达,请求仍会被服务。

  • 格式错误的输入会得到符合规范的 JSON-RPC 错误——无法解析的请求体为 -32700,未知工具为 -32602——绝不会是 HTML 错误页面。

  • 请求体有大小上限,并在传输前进行验证。

隐私

无账户、无 Cookie、无广告。使用情况以聚合方式衡量,使用每日轮换的哈希标识符,保留期为 200 天;原始 IP 从不存储。完整政策:PRIVACY.md

来源与许可

知识内容为 CC-BY-4.0:可以使用,但请注明来源。来源注册表公开,正是为了让论断可以被核查而非被信任——get_sources 返回任何给定论断所依据的内容。

论断带有证据等级和 last_verified 日期。当证据较弱时,对象会明确说明,而不是四舍五入。

它是如何构建的

Citarium 编译和服务,这是一个开源框架,用于将知识图谱从单一来源转化为网站、API、MCP 服务器和智能体可读的文件——目前处于外部评估中,守护者和证伪记录都是公开的。

此仓库是服务器的公开门面:其清单和文档。语料库本身位于 hispanic-legacy.com

A
license - permissive license
Not graded
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Related MCP Servers

  • A
    license
    A
    quality
    F
    maintenance
    MCP server for querying Spanish government open data APIs including grants, legislation, company registry, statistics, and open data catalog. Enables LLMs to access Spanish public information on-the-fly.
    26
    5
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Read-only MCP server that serves the Archivo Epistemico (epistemic graph), enabling AI to read and query the epistemic path autonomously via tools like search, get_via, resolve, and get_necesidad.
  • A
    license
    A
    quality
    B
    maintenance
    Provides a read-only MCP interface to the Santismm Knowledge Platform, offering tools to retrieve curated content on engineering, AI patterns, architectures, governance, and agent taxonomy with structured output in English, Spanish, and Portuguese.
    14
    13
    MIT

View all related MCP servers

Related MCP Connectors

  • Hosted MCP endpoint with realistic fake data for prototyping agents. 12 tools, no setup.

  • Shared, peer-validated knowledge archive for AI agents — search, contribute, and validate via MCP

  • Agent-native MCP server over the public saagarpatel.dev corpus. Read-only, stateless.

View all MCP Connectors

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/citarium/hispanic-legacy-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server