@cyanheads/wikidata-mcp-server 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CLAUDE.md +401 -0
- package/Dockerfile +98 -0
- package/LICENSE +201 -0
- package/README.md +293 -0
- package/changelog/0.1.x/0.1.0.md +20 -0
- package/changelog/0.1.x/0.1.1.md +20 -0
- package/changelog/template.md +119 -0
- package/dist/config/server-config.d.ts +11 -0
- package/dist/config/server-config.d.ts.map +1 -0
- package/dist/config/server-config.js +31 -0
- package/dist/config/server-config.js.map +1 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +34 -0
- package/dist/index.js.map +1 -0
- package/dist/mcp-server/resources/definitions/entity.resource.d.ts +11 -0
- package/dist/mcp-server/resources/definitions/entity.resource.d.ts.map +1 -0
- package/dist/mcp-server/resources/definitions/entity.resource.js +127 -0
- package/dist/mcp-server/resources/definitions/entity.resource.js.map +1 -0
- package/dist/mcp-server/tools/definitions/get-entity.tool.d.ts +38 -0
- package/dist/mcp-server/tools/definitions/get-entity.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/get-entity.tool.js +215 -0
- package/dist/mcp-server/tools/definitions/get-entity.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/get-labels.tool.d.ts +24 -0
- package/dist/mcp-server/tools/definitions/get-labels.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/get-labels.tool.js +93 -0
- package/dist/mcp-server/tools/definitions/get-labels.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/get-sitelinks.tool.d.ts +31 -0
- package/dist/mcp-server/tools/definitions/get-sitelinks.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/get-sitelinks.tool.js +128 -0
- package/dist/mcp-server/tools/definitions/get-sitelinks.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/get-statements.tool.d.ts +29 -0
- package/dist/mcp-server/tools/definitions/get-statements.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/get-statements.tool.js +185 -0
- package/dist/mcp-server/tools/definitions/get-statements.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/resolve-external-id.tool.d.ts +30 -0
- package/dist/mcp-server/tools/definitions/resolve-external-id.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/resolve-external-id.tool.js +193 -0
- package/dist/mcp-server/tools/definitions/resolve-external-id.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/search-entities.tool.d.ts +36 -0
- package/dist/mcp-server/tools/definitions/search-entities.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/search-entities.tool.js +129 -0
- package/dist/mcp-server/tools/definitions/search-entities.tool.js.map +1 -0
- package/dist/mcp-server/tools/definitions/sparql-query.tool.d.ts +34 -0
- package/dist/mcp-server/tools/definitions/sparql-query.tool.d.ts.map +1 -0
- package/dist/mcp-server/tools/definitions/sparql-query.tool.js +151 -0
- package/dist/mcp-server/tools/definitions/sparql-query.tool.js.map +1 -0
- package/dist/services/wikidata/types.d.ts +164 -0
- package/dist/services/wikidata/types.d.ts.map +1 -0
- package/dist/services/wikidata/types.js +6 -0
- package/dist/services/wikidata/types.js.map +1 -0
- package/dist/services/wikidata/wikidata-rest-service.d.ts +48 -0
- package/dist/services/wikidata/wikidata-rest-service.d.ts.map +1 -0
- package/dist/services/wikidata/wikidata-rest-service.js +293 -0
- package/dist/services/wikidata/wikidata-rest-service.js.map +1 -0
- package/dist/services/wikidata/wikidata-sparql-service.d.ts +23 -0
- package/dist/services/wikidata/wikidata-sparql-service.d.ts.map +1 -0
- package/dist/services/wikidata/wikidata-sparql-service.js +163 -0
- package/dist/services/wikidata/wikidata-sparql-service.js.map +1 -0
- package/package.json +82 -0
- package/server.json +141 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright 2025 Casey Hand @cyanheads
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,293 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
<h1>@cyanheads/wikidata-mcp-server</h1>
|
|
3
|
+
<p><b>Search and fetch Wikidata entities, execute SPARQL queries, resolve external identifiers. STDIO or Streamable HTTP.</b>
|
|
4
|
+
<div>7 Tools • 1 Resource</div>
|
|
5
|
+
</p>
|
|
6
|
+
</div>
|
|
7
|
+
|
|
8
|
+
<div align="center">
|
|
9
|
+
|
|
10
|
+
[](./CHANGELOG.md) [](./LICENSE) [](https://modelcontextprotocol.io/) [](https://www.npmjs.com/package/@cyanheads/wikidata-mcp-server) [](https://www.typescriptlang.org/) [](https://bun.sh/)
|
|
11
|
+
|
|
12
|
+
</div>
|
|
13
|
+
|
|
14
|
+
<div align="center">
|
|
15
|
+
|
|
16
|
+
[](https://github.com/cyanheads/wikidata-mcp-server/releases/latest/download/wikidata-mcp-server.mcpb) [](https://cursor.com/en/install-mcp?name=wikidata-mcp-server&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsIkBjeWFuaGVhZHMvd2lraWRhdGEtbWNwLXNlcnZlciJdfQ==) [](https://vscode.dev/redirect?url=vscode:mcp/install?%7B%22name%22%3A%22wikidata-mcp-server%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40cyanheads%2Fwikidata-mcp-server%22%5D%7D)
|
|
17
|
+
|
|
18
|
+
[](https://www.npmjs.com/package/@cyanheads/mcp-ts-core)
|
|
19
|
+
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Tools
|
|
25
|
+
|
|
26
|
+
7 tools for working with Wikidata's knowledge graph:
|
|
27
|
+
|
|
28
|
+
| Tool | Description |
|
|
29
|
+
|:---|:---|
|
|
30
|
+
| `wikidata_search_entities` | Search for items or properties by text query, returning QIDs/PIDs with labels, descriptions, and match metadata |
|
|
31
|
+
| `wikidata_get_entity` | Fetch a full entity by QID or PID with optional field and language filtering |
|
|
32
|
+
| `wikidata_get_labels` | Batch-resolve up to 50 QIDs or PIDs to human-readable labels and descriptions |
|
|
33
|
+
| `wikidata_get_statements` | Fetch property claims for an entity with qualifier detail and QID label resolution |
|
|
34
|
+
| `wikidata_get_sitelinks` | Fetch Wikipedia and Wikimedia project article URLs for a Wikidata item |
|
|
35
|
+
| `wikidata_sparql_query` | Execute a SPARQL SELECT query against the Wikidata Query Service |
|
|
36
|
+
| `wikidata_resolve_external_id` | Look up a Wikidata entity by an external identifier (DOI, PubMed ID, ORCID, OpenAlex ID, etc.) |
|
|
37
|
+
|
|
38
|
+
### `wikidata_search_entities`
|
|
39
|
+
|
|
40
|
+
Search Wikidata for items or properties by text query.
|
|
41
|
+
|
|
42
|
+
- Searches labels, aliases, and descriptions
|
|
43
|
+
- `type="item"` for real-world concepts (people, places, works); `type="property"` for predicate P-IDs
|
|
44
|
+
- Language-aware results (BCP 47 language codes)
|
|
45
|
+
- Offset-based pagination, up to 50 results per call
|
|
46
|
+
- Returns match metadata indicating whether the hit was on a label or alias
|
|
47
|
+
|
|
48
|
+
---
|
|
49
|
+
|
|
50
|
+
### `wikidata_get_entity`
|
|
51
|
+
|
|
52
|
+
Fetch a Wikidata entity by QID or PID with field selection.
|
|
53
|
+
|
|
54
|
+
- Q-IDs (e.g. `Q76`) fetch items; P-IDs (e.g. `P31`) fetch properties — endpoint routing is automatic
|
|
55
|
+
- `fields` parameter trims the response to `labels`, `descriptions`, `aliases`, `statements`, or `sitelinks`
|
|
56
|
+
- `languages` parameter filters multilingual maps to specific language codes
|
|
57
|
+
- Full entity payload always fetched from the API; field/language filtering is client-side
|
|
58
|
+
|
|
59
|
+
---
|
|
60
|
+
|
|
61
|
+
### `wikidata_get_labels`
|
|
62
|
+
|
|
63
|
+
Batch-resolve QIDs/PIDs to human-readable labels and descriptions.
|
|
64
|
+
|
|
65
|
+
- Up to 50 IDs per call, batched via the MediaWiki `wbgetentities` API
|
|
66
|
+
- Supports multiple language codes per request
|
|
67
|
+
- Reports `found` count and `notFound` IDs for partial-result handling
|
|
68
|
+
- Designed for the common agent pattern: run a SPARQL query, then humanize the QID results
|
|
69
|
+
|
|
70
|
+
---
|
|
71
|
+
|
|
72
|
+
### `wikidata_get_statements`
|
|
73
|
+
|
|
74
|
+
Fetch property claims for a Wikidata entity with full qualifier and reference detail.
|
|
75
|
+
|
|
76
|
+
- `properties` parameter fetches only specific P-IDs — omit to return all statements
|
|
77
|
+
- Value QIDs are resolved to human-readable labels by default via a batched label call
|
|
78
|
+
- Set `resolve_labels=false` for raw QIDs only (faster, smaller payload)
|
|
79
|
+
- Preferred-rank statements represent the most current values
|
|
80
|
+
- Designed for fact verification: "what does Wikidata say about this entity's {property}?"
|
|
81
|
+
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
### `wikidata_get_sitelinks`
|
|
85
|
+
|
|
86
|
+
Fetch Wikipedia and Wikimedia project article URLs for a Wikidata item.
|
|
87
|
+
|
|
88
|
+
- Maps site codes (e.g., `enwiki`) to article titles and URLs
|
|
89
|
+
- `sites` parameter filters to specific site codes
|
|
90
|
+
- `wikis_only=true` returns only Wikipedia links (excludes Wiktionary, Wikiquote, Wikisource, etc.)
|
|
91
|
+
- Major items can have 300+ sitelinks across languages
|
|
92
|
+
- Only Q-IDs (items) have sitelinks — P-IDs are not supported
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
### `wikidata_sparql_query`
|
|
97
|
+
|
|
98
|
+
Execute a SPARQL SELECT query against the Wikidata Query Service (Blazegraph).
|
|
99
|
+
|
|
100
|
+
- Full graph power: multi-hop traversals, aggregations, subqueries, OPTIONAL, FILTER, UNION, BIND
|
|
101
|
+
- Standard Wikidata prefixes (`wd:`, `wdt:`, `p:`, `ps:`, `pq:`, `wikibase:`, `bd:`) are auto-injected
|
|
102
|
+
- `wikibase:label` SERVICE auto-injected when `language` is set and the query uses `?<var>Label` variables
|
|
103
|
+
- Results in SPARQL 1.1 JSON format: each binding is `{ type, value, "xml:lang"? }`
|
|
104
|
+
- Hard server timeout is 60s; client-side `timeout` parameter (1–55s) applies earlier
|
|
105
|
+
- Rate-limited at 60 requests/min and 5 concurrent requests per IP
|
|
106
|
+
|
|
107
|
+
---
|
|
108
|
+
|
|
109
|
+
### `wikidata_resolve_external_id`
|
|
110
|
+
|
|
111
|
+
Look up a Wikidata entity by an external identifier.
|
|
112
|
+
|
|
113
|
+
- Common use cases: CrossRef DOI → QID (P356), PubMed PMID → QID (P698), ORCID → author QID (P496), OpenAlex ID → entity QID (P10283), IMDb ID (P345)
|
|
114
|
+
- Automatic value normalization: DOIs uppercased, PMID prefixes stripped, ORCID hyphens normalized
|
|
115
|
+
- Returns `match=null` when not found
|
|
116
|
+
- Returns `multipleMatches` when a Wikidata data integrity issue causes more than one entity to claim the same external ID
|
|
117
|
+
- Designed for cross-server joins with pubmed-mcp-server, crossref-mcp-server, and openalex-mcp-server
|
|
118
|
+
|
|
119
|
+
## Resource
|
|
120
|
+
|
|
121
|
+
| Type | Name | Description |
|
|
122
|
+
|:---|:---|:---|
|
|
123
|
+
| Resource | `wikidata://entity/{id}` | Compact markdown summary of a Wikidata entity — labels, English description, instance-of, Wikipedia link, image, and statement count |
|
|
124
|
+
|
|
125
|
+
## Features
|
|
126
|
+
|
|
127
|
+
Built on [`@cyanheads/mcp-ts-core`](https://github.com/cyanheads/mcp-ts-core):
|
|
128
|
+
|
|
129
|
+
- Declarative tool definitions — single file per tool, framework handles registration and validation
|
|
130
|
+
- Unified error handling across all tools
|
|
131
|
+
- Pluggable auth (`none`, `jwt`, `oauth`)
|
|
132
|
+
- Swappable storage backends: `in-memory`, `filesystem`, `Supabase`, `Cloudflare KV/R2/D1`
|
|
133
|
+
- Structured logging with optional OpenTelemetry tracing
|
|
134
|
+
- Runs locally (stdio/HTTP) from the same codebase
|
|
135
|
+
|
|
136
|
+
Wikidata-specific:
|
|
137
|
+
|
|
138
|
+
- Wikidata REST API v1 for entity and statement fetches — no SPARQL overhead for lookup operations
|
|
139
|
+
- MediaWiki `wbgetentities` API for efficient batch label resolution
|
|
140
|
+
- Wikidata Query Service (Blazegraph) for SPARQL with auto-injected prefix headers and label SERVICE
|
|
141
|
+
- Configurable `User-Agent` per Wikimedia policy
|
|
142
|
+
- Separate timeout configuration for REST and SPARQL endpoints
|
|
143
|
+
|
|
144
|
+
Agent-friendly output:
|
|
145
|
+
|
|
146
|
+
- `wikidata_get_labels` designed to follow SPARQL result sets — run the query, then humanize in one call
|
|
147
|
+
- `wikidata_resolve_external_id` handles DOI/PMID/ORCID normalization transparently, with `multipleMatches` for data integrity edge cases
|
|
148
|
+
- `wikidata_get_statements` resolves QID values to labels in the same call, with `resolve_labels=false` escape hatch for raw payloads
|
|
149
|
+
- All tools echo input parameters in the response for traceability
|
|
150
|
+
|
|
151
|
+
## Getting started
|
|
152
|
+
|
|
153
|
+
### Self-Hosted / Local
|
|
154
|
+
|
|
155
|
+
Add the following to your MCP client configuration file.
|
|
156
|
+
|
|
157
|
+
```json
|
|
158
|
+
{
|
|
159
|
+
"mcpServers": {
|
|
160
|
+
"wikidata": {
|
|
161
|
+
"type": "stdio",
|
|
162
|
+
"command": "bunx",
|
|
163
|
+
"args": ["@cyanheads/wikidata-mcp-server@latest"],
|
|
164
|
+
"env": {
|
|
165
|
+
"MCP_TRANSPORT_TYPE": "stdio",
|
|
166
|
+
"MCP_LOG_LEVEL": "info"
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
Or with npx (no Bun required):
|
|
174
|
+
|
|
175
|
+
```json
|
|
176
|
+
{
|
|
177
|
+
"mcpServers": {
|
|
178
|
+
"wikidata": {
|
|
179
|
+
"type": "stdio",
|
|
180
|
+
"command": "npx",
|
|
181
|
+
"args": ["-y", "@cyanheads/wikidata-mcp-server@latest"],
|
|
182
|
+
"env": {
|
|
183
|
+
"MCP_TRANSPORT_TYPE": "stdio",
|
|
184
|
+
"MCP_LOG_LEVEL": "info"
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
For Streamable HTTP, set the transport and start the server:
|
|
192
|
+
|
|
193
|
+
```sh
|
|
194
|
+
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
|
|
195
|
+
# Server listens at http://localhost:3010/mcp
|
|
196
|
+
```
|
|
197
|
+
|
|
198
|
+
### Prerequisites
|
|
199
|
+
|
|
200
|
+
- [Bun v1.3.0](https://bun.sh/) or higher (or Node.js ≥ 24.0.0).
|
|
201
|
+
|
|
202
|
+
### Installation
|
|
203
|
+
|
|
204
|
+
1. **Clone the repository:**
|
|
205
|
+
|
|
206
|
+
```sh
|
|
207
|
+
git clone https://github.com/cyanheads/wikidata-mcp-server.git
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
2. **Navigate into the directory:**
|
|
211
|
+
|
|
212
|
+
```sh
|
|
213
|
+
cd wikidata-mcp-server
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
3. **Install dependencies:**
|
|
217
|
+
|
|
218
|
+
```sh
|
|
219
|
+
bun install
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
## Configuration
|
|
223
|
+
|
|
224
|
+
All configuration is validated at startup via Zod schemas. Key environment variables:
|
|
225
|
+
|
|
226
|
+
| Variable | Description | Default |
|
|
227
|
+
|:---|:---|:---|
|
|
228
|
+
| `MCP_TRANSPORT_TYPE` | Transport: `stdio` or `http` | `stdio` |
|
|
229
|
+
| `MCP_HTTP_PORT` | HTTP server port | `3010` |
|
|
230
|
+
| `MCP_HTTP_ENDPOINT_PATH` | HTTP endpoint path where the MCP server is mounted | `/mcp` |
|
|
231
|
+
| `MCP_PUBLIC_URL` | Public origin override for TLS-terminating reverse-proxy deployments | none |
|
|
232
|
+
| `MCP_AUTH_MODE` | Authentication: `none`, `jwt`, or `oauth` | `none` |
|
|
233
|
+
| `MCP_LOG_LEVEL` | Log level (`debug`, `info`, `notice`, `warning`, `error`) | `info` |
|
|
234
|
+
| `MCP_GC_PRESSURE_INTERVAL_MS` | Opt-in Bun-only forced-GC interval (ms). Try `60000` if heap growth is observed under HTTP load. | `0` (disabled) |
|
|
235
|
+
| `LOGS_DIR` | Directory for log files (Node.js only) | `<project-root>/logs` |
|
|
236
|
+
| `STORAGE_PROVIDER_TYPE` | Storage backend: `in-memory`, `filesystem`, `supabase`, `cloudflare-kv/r2/d1` | `in-memory` |
|
|
237
|
+
| `WIKIDATA_USER_AGENT` | User-Agent string for Wikimedia requests (policy requires a descriptive value) | `wikidata-mcp-server/0.1 (https://github.com/cyanheads/wikidata-mcp-server)` |
|
|
238
|
+
| `WIKIDATA_SPARQL_TIMEOUT_MS` | Max wait for a SPARQL response in ms | `55000` |
|
|
239
|
+
| `WIKIDATA_REST_TIMEOUT_MS` | Max wait for REST API responses in ms | `10000` |
|
|
240
|
+
| `OTEL_ENABLED` | Enable OpenTelemetry | `false` |
|
|
241
|
+
|
|
242
|
+
## Running the server
|
|
243
|
+
|
|
244
|
+
### Local development
|
|
245
|
+
|
|
246
|
+
- **Build and run the production version**:
|
|
247
|
+
|
|
248
|
+
```sh
|
|
249
|
+
# One-time build
|
|
250
|
+
bun run rebuild
|
|
251
|
+
|
|
252
|
+
# Run the built server
|
|
253
|
+
bun run start:http
|
|
254
|
+
# or
|
|
255
|
+
bun run start:stdio
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
- **Run checks and tests**:
|
|
259
|
+
```sh
|
|
260
|
+
bun run devcheck # Lints, formats, type-checks, and more
|
|
261
|
+
bun run test # Runs the test suite
|
|
262
|
+
```
|
|
263
|
+
|
|
264
|
+
## Project structure
|
|
265
|
+
|
|
266
|
+
| Directory | Purpose |
|
|
267
|
+
|:---|:---|
|
|
268
|
+
| `src/mcp-server/tools` | Tool definitions (`*.tool.ts`). Seven tools for entity lookup, statements, sitelinks, SPARQL, and external ID resolution. |
|
|
269
|
+
| `src/mcp-server/resources` | Resource definitions. Entity summary resource. |
|
|
270
|
+
| `src/services/wikidata` | Wikidata service layer — REST API client, SPARQL client, statement normalization, types. |
|
|
271
|
+
| `src/config` | Server-specific environment variable parsing and validation with Zod. |
|
|
272
|
+
| `tests/` | Unit and integration tests, mirroring the `src/` structure. |
|
|
273
|
+
|
|
274
|
+
## Development guide
|
|
275
|
+
|
|
276
|
+
See [`CLAUDE.md`](./CLAUDE.md) for development guidelines and architectural rules. The short version:
|
|
277
|
+
|
|
278
|
+
- Handlers throw, framework catches — no `try/catch` in tool logic
|
|
279
|
+
- Use `ctx.log` for logging, `ctx.state` for storage
|
|
280
|
+
- Register new tools and resources in the `createApp()` arrays
|
|
281
|
+
|
|
282
|
+
## Contributing
|
|
283
|
+
|
|
284
|
+
Issues and pull requests are welcome. Run checks and tests before submitting:
|
|
285
|
+
|
|
286
|
+
```sh
|
|
287
|
+
bun run devcheck
|
|
288
|
+
bun run test
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
## License
|
|
292
|
+
|
|
293
|
+
This project is licensed under the Apache 2.0 License. See the [LICENSE](./LICENSE) file for details.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "Initial release — 7 tools covering entity search, fetch, statements, labels, sitelinks, SPARQL, and external ID resolution"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.0 — 2026-05-23
|
|
8
|
+
|
|
9
|
+
## Added
|
|
10
|
+
|
|
11
|
+
- `wikidata_search_entities` — search items or properties by text query with pagination and language support
|
|
12
|
+
- `wikidata_get_entity` — fetch a full entity (item or property) by QID or PID with field and language filtering
|
|
13
|
+
- `wikidata_get_statements` — fetch normalized property statements with qualifier and reference detail; resolves wikibase-item value QIDs to labels by default
|
|
14
|
+
- `wikidata_get_labels` — batch-resolve up to 50 QIDs/PIDs to human-readable labels and descriptions via wbgetentities
|
|
15
|
+
- `wikidata_get_sitelinks` — fetch Wikipedia and Wikimedia sitelinks for a Wikidata item with optional site filtering and wikis-only mode
|
|
16
|
+
- `wikidata_sparql_query` — execute SPARQL SELECT queries against the Wikidata Query Service; auto-injects standard prefixes and the wikibase:label SERVICE
|
|
17
|
+
- `wikidata_resolve_external_id` — look up a Wikidata entity by DOI (P356), PubMed ID (P698), ORCID (P496), OpenAlex ID (P10283), or any external identifier property; normalizes DOIs, PMIDs, and ORCIDs automatically
|
|
18
|
+
- `wikidata://entity/{id}` resource — compact markdown entity summary by QID or PID
|
|
19
|
+
- `WikidataRestService` — client for the Wikidata REST API v1 and MediaWiki wbgetentities API with retry, timeout, and rate-limit handling
|
|
20
|
+
- `WikidataSparqlService` — client for the Wikidata SPARQL endpoint with query preparation, prefix injection, and label SERVICE injection
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
summary: "First real release — Wikidata knowledge graph MCP server with 7 tools for entity search/fetch, SPARQL queries, batch label resolution, and external ID lookup (DOI, PMID, ORCID, OpenAlex, IMDb)"
|
|
3
|
+
breaking: false
|
|
4
|
+
security: false
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
# 0.1.1 — 2026-05-23
|
|
8
|
+
|
|
9
|
+
## Added
|
|
10
|
+
|
|
11
|
+
- `wikidata_search_entities` — search items or properties by text query with pagination and language support
|
|
12
|
+
- `wikidata_get_entity` — fetch a full entity by QID or PID with field and language filtering
|
|
13
|
+
- `wikidata_get_statements` — fetch normalized property statements with qualifier and reference detail; resolves wikibase-item value QIDs to labels by default
|
|
14
|
+
- `wikidata_get_labels` — batch-resolve up to 50 QIDs/PIDs to labels and descriptions via `wbgetentities`
|
|
15
|
+
- `wikidata_get_sitelinks` — fetch Wikipedia and Wikimedia sitelinks with optional site filtering and wikis-only mode
|
|
16
|
+
- `wikidata_sparql_query` — execute SPARQL SELECT queries against the Wikidata Query Service; auto-injects standard prefixes and the `wikibase:label` SERVICE
|
|
17
|
+
- `wikidata_resolve_external_id` — look up Wikidata entities by DOI (P356), PubMed ID (P698), ORCID (P496), OpenAlex ID (P10283), IMDb ID (P345), or any external identifier property; normalizes DOI/PMID/ORCID formats automatically
|
|
18
|
+
- `wikidata://entity/{id}` resource — compact markdown entity summary by QID or PID
|
|
19
|
+
- `WikidataRestService` — Wikidata REST API v1 + MediaWiki `wbgetentities` client with retry, timeout, and rate-limit handling
|
|
20
|
+
- `WikidataSparqlService` — SPARQL endpoint client with query preparation, prefix injection, and label SERVICE injection
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
---
|
|
2
|
+
# FORMAT REFERENCE — do not edit. Copy this file to
|
|
3
|
+
# `changelog/<major.minor>.x/<version>.md` (e.g. `changelog/0.8.x/0.8.6.md`)
|
|
4
|
+
# to author a new release. Set that file's H1 to `# <version> — YYYY-MM-DD`
|
|
5
|
+
# with a concrete date.
|
|
6
|
+
|
|
7
|
+
# Required. One-line GitHub Release-style headline. 350 character cap.
|
|
8
|
+
# Default short and scannable. Don't pad, don't stitch unrelated changes with
|
|
9
|
+
# semicolons — pick the headline. Quotes required: unquoted YAML treats `: `
|
|
10
|
+
# inside the value as a key separator and fails GitHub's strict parser.
|
|
11
|
+
summary: ""
|
|
12
|
+
|
|
13
|
+
# Set `true` when consumers must change code to upgrade: API removals,
|
|
14
|
+
# signature changes, config renames, behavior changes that break existing
|
|
15
|
+
# usage. Flagged as `Breaking` in the rollup.
|
|
16
|
+
breaking: false
|
|
17
|
+
|
|
18
|
+
# Set `true` if this release contains any security fix. Pairs with the
|
|
19
|
+
# `## Security` section below. Flagged as `Security` in the rollup so
|
|
20
|
+
# users can triage upgrade urgency at a glance.
|
|
21
|
+
security: false
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
# <version> — YYYY-MM-DD
|
|
25
|
+
|
|
26
|
+
<!--
|
|
27
|
+
AUTHORING GUIDE — applies to the new per-version file you create from this
|
|
28
|
+
template.
|
|
29
|
+
|
|
30
|
+
Audience: someone scanning release notes to decide what affects them. Lead
|
|
31
|
+
each bullet with the symbol or concept name in **bold** so they can skip
|
|
32
|
+
what's irrelevant and zoom in on what's not.
|
|
33
|
+
|
|
34
|
+
Tone: terse, fact-dense, not verbose. Default to one sentence per bullet —
|
|
35
|
+
name the symbol, state what changed, stop. Use a second sentence only when
|
|
36
|
+
it carries weight. If a bullet feels long, it is.
|
|
37
|
+
|
|
38
|
+
Cut: mechanism walkthroughs (those belong in JSDoc, AGENTS.md, or the
|
|
39
|
+
relevant skill), ceremonial framings ("This release introduces…",
|
|
40
|
+
backwards-compat paragraphs), file-by-file test enumerations, internal
|
|
41
|
+
implementation notes. Prefer code/symbol names over English re-explanations.
|
|
42
|
+
|
|
43
|
+
Narrative intro: skip by default. Add one short sentence only when the
|
|
44
|
+
release theme genuinely needs framing the bullets can't carry.
|
|
45
|
+
|
|
46
|
+
Sections: Keep a Changelog order — Added, Changed, Deprecated, Removed,
|
|
47
|
+
Fixed, Security. Include only sections with entries; delete the rest
|
|
48
|
+
(including the commented-out scaffolding below). Don't ship empty headers.
|
|
49
|
+
|
|
50
|
+
Include: every distinct fact a reader needs to adopt or audit the release —
|
|
51
|
+
new exports, signatures, lint rule IDs, env vars, breaking changes, version
|
|
52
|
+
bumps on shipped skills. Nothing more.
|
|
53
|
+
|
|
54
|
+
Links: link issues, PRs, docs, or skills where they help a reader jump to
|
|
55
|
+
context. Once per item per entry — don't re-link the same issue in summary,
|
|
56
|
+
narrative, and bullet. Skip links for inline symbol names; code spans speak
|
|
57
|
+
for themselves.
|
|
58
|
+
|
|
59
|
+
Issue/PR URLs: use full URLs. GitHub's bare `#NN` auto-link only resolves
|
|
60
|
+
inside its own UI, not in npm reads or local editors.
|
|
61
|
+
|
|
62
|
+
[#38](https://github.com/cyanheads/mcp-ts-core/issues/38) ← issue
|
|
63
|
+
[#42](https://github.com/cyanheads/mcp-ts-core/pull/42) ← PR
|
|
64
|
+
|
|
65
|
+
Verify numbers exist before linking (`gh issue view NN`, `gh pr view NN`).
|
|
66
|
+
Never speculate on a future number — `#42` for an upcoming PR silently
|
|
67
|
+
resolves to whatever real item already owns 42, and timeline previews pull
|
|
68
|
+
in that unrelated item's metadata.
|
|
69
|
+
|
|
70
|
+
TAG ANNOTATIONS — the annotated tag body renders as the GitHub Release body
|
|
71
|
+
via `gh release create --notes-from-tag`. The tag is a derivative of this
|
|
72
|
+
changelog entry — a condensed, scannable version, not a copy. Format:
|
|
73
|
+
|
|
74
|
+
<theme — omit version number, GitHub prepends it>
|
|
75
|
+
← blank line
|
|
76
|
+
<1-2 sentence context: what this release does>
|
|
77
|
+
← blank line
|
|
78
|
+
Dependency bumps: ← section header
|
|
79
|
+
← blank line
|
|
80
|
+
- `@cyanheads/mcp-ts-core` ^0.9.1 → ^0.9.6 ← bullet
|
|
81
|
+
← blank line
|
|
82
|
+
Changed: ← only sections with entries
|
|
83
|
+
← blank line
|
|
84
|
+
- `format()` output includes `query` in text mode
|
|
85
|
+
← blank line
|
|
86
|
+
Added:
|
|
87
|
+
← blank line
|
|
88
|
+
- `manifest.json` scaffolded for MCPB bundle support
|
|
89
|
+
- Install badges (Claude Desktop, Cursor, VS Code)
|
|
90
|
+
← blank line
|
|
91
|
+
<N> tests pass; `bun run devcheck` clean. ← footer
|
|
92
|
+
|
|
93
|
+
Never a flat comma-separated string. Always structured markdown with
|
|
94
|
+
sections. The tag must scan well as a rendered GitHub Release page.
|
|
95
|
+
-->
|
|
96
|
+
|
|
97
|
+
## Added
|
|
98
|
+
|
|
99
|
+
-
|
|
100
|
+
|
|
101
|
+
## Changed
|
|
102
|
+
|
|
103
|
+
-
|
|
104
|
+
|
|
105
|
+
<!-- ## Deprecated
|
|
106
|
+
|
|
107
|
+
- -->
|
|
108
|
+
|
|
109
|
+
<!-- ## Removed
|
|
110
|
+
|
|
111
|
+
- -->
|
|
112
|
+
|
|
113
|
+
## Fixed
|
|
114
|
+
|
|
115
|
+
-
|
|
116
|
+
|
|
117
|
+
<!-- ## Security
|
|
118
|
+
|
|
119
|
+
- -->
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Server-specific configuration for wikidata-mcp-server.
|
|
3
|
+
* @module config/server-config
|
|
4
|
+
*/
|
|
5
|
+
/** Returns the lazy-parsed server configuration. */
|
|
6
|
+
export declare function getServerConfig(): {
|
|
7
|
+
userAgent: string;
|
|
8
|
+
sparqlTimeoutMs: number;
|
|
9
|
+
restTimeoutMs: number;
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=server-config.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"server-config.d.ts","sourceRoot":"","sources":["../../src/config/server-config.ts"],"names":[],"mappings":"AAAA;;;GAGG;AA0BH,oDAAoD;AACpD,wBAAgB,eAAe;;;;EAO9B"}
|