thisispaper-mcp 1.0.0
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/LICENSE +26 -0
- package/README.md +72 -0
- package/bin/thisispaper-mcp.js +24 -0
- package/package.json +39 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Thisispaper
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
Note: this license covers the integration manifests and documentation in this
|
|
16
|
+
repository only. The Thisispaper editorial archive and API content remain the
|
|
17
|
+
property of Thisispaper and are governed by the API terms at
|
|
18
|
+
https://www.thisispaper.com/intelligence/api-docs
|
|
19
|
+
|
|
20
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
21
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
22
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
23
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
24
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
25
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
26
|
+
SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# Thisispaper MCP
|
|
2
|
+
|
|
3
|
+
Search 2,500+ curated architecture, design, photography and art projects. Fifteen years of human curation, structured for agents: search, visual similarity, and full project metadata with material, light, mood and composition tags. Free tier, no signup to try.
|
|
4
|
+
|
|
5
|
+
- **Endpoint (Streamable HTTP, stateless):** `https://www.thisispaper.com/intelligence/api/mcp`
|
|
6
|
+
- **Docs:** [thisispaper.com/intelligence/api-docs](https://www.thisispaper.com/intelligence/api-docs)
|
|
7
|
+
- **Auth:** optional. Anonymous requests work out of the box (results capped at 5). A free self-serve key (200 calls/month) unlocks full results via `Authorization: Bearer tip_live_...`
|
|
8
|
+
|
|
9
|
+
## Tools
|
|
10
|
+
|
|
11
|
+
| Tool | What it does |
|
|
12
|
+
|---|---|
|
|
13
|
+
| `search_projects` | Ranked search across the archive: name, studio, city, year, category, intro, thumbnail, URL |
|
|
14
|
+
| `similar_projects` | Visually + semantically similar projects for a slug (precomputed SigLIP neighbours) |
|
|
15
|
+
| `get_project` | Full metadata for one project: description, design language, details, dimensions |
|
|
16
|
+
| `get_api_key` | Mints a free API key (200 calls/month) for an email address |
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
### Cursor
|
|
21
|
+
|
|
22
|
+
[Add to Cursor](https://cursor.com/en/install-mcp?name=thisispaper&config=eyJ1cmwiOiJodHRwczovL3d3dy50aGlzaXNwYXBlci5jb20vaW50ZWxsaWdlbmNlL2FwaS9tY3AifQ%3D%3D)
|
|
23
|
+
|
|
24
|
+
Or add to `.cursor/mcp.json`:
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
{
|
|
28
|
+
"mcpServers": {
|
|
29
|
+
"thisispaper": {
|
|
30
|
+
"url": "https://www.thisispaper.com/intelligence/api/mcp"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Gemini CLI
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
gemini extensions install https://github.com/zaxarovcom/thisispaper-mcp
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Claude Code
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
claude mcp add --transport http thisispaper https://www.thisispaper.com/intelligence/api/mcp
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
### Claude.ai (custom connector)
|
|
49
|
+
|
|
50
|
+
Settings → Connectors → Add custom connector → URL: `https://www.thisispaper.com/intelligence/api/mcp`
|
|
51
|
+
|
|
52
|
+
### Any MCP client (generic)
|
|
53
|
+
|
|
54
|
+
Transport: Streamable HTTP. URL: `https://www.thisispaper.com/intelligence/api/mcp`. No OAuth. Optional header: `Authorization: Bearer tip_live_...`
|
|
55
|
+
|
|
56
|
+
## Getting a free key
|
|
57
|
+
|
|
58
|
+
Ask the agent to call `get_api_key` with your email, or use the [API docs page](https://www.thisispaper.com/intelligence/api-docs). 200 calls/month, no card.
|
|
59
|
+
|
|
60
|
+
## Try it
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
"Find concrete chapels in the Thisispaper archive"
|
|
64
|
+
"Show me projects similar to audeum-kengo-kuma"
|
|
65
|
+
"What materials define Japanese teahouse projects?"
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
## About
|
|
69
|
+
|
|
70
|
+
[Thisispaper](https://www.thisispaper.com) is an independent architecture and design publication. Every project in the archive was selected by human editors since 2011.
|
|
71
|
+
|
|
72
|
+
Contact: alexander@thisispaper.com
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
// Thisispaper MCP — stdio wrapper around the remote Streamable HTTP endpoint.
|
|
3
|
+
// Docs: https://www.thisispaper.com/intelligence/api-docs
|
|
4
|
+
// Endpoint: https://www.thisispaper.com/intelligence/api/mcp
|
|
5
|
+
//
|
|
6
|
+
// This simply execs `npx -y mcp-remote <endpoint>` so any stdio-only MCP
|
|
7
|
+
// client can talk to the hosted server. Extra CLI args are passed through
|
|
8
|
+
// (e.g. --header "Authorization: Bearer tip_live_...").
|
|
9
|
+
|
|
10
|
+
import { spawn } from "node:child_process";
|
|
11
|
+
|
|
12
|
+
const ENDPOINT = "https://www.thisispaper.com/intelligence/api/mcp";
|
|
13
|
+
const args = ["-y", "mcp-remote", ENDPOINT, ...process.argv.slice(2)];
|
|
14
|
+
const cmd = process.platform === "win32" ? "npx.cmd" : "npx";
|
|
15
|
+
|
|
16
|
+
const child = spawn(cmd, args, { stdio: "inherit" });
|
|
17
|
+
child.on("exit", (code, signal) => {
|
|
18
|
+
if (signal) process.kill(process.pid, signal);
|
|
19
|
+
process.exit(code ?? 0);
|
|
20
|
+
});
|
|
21
|
+
child.on("error", (err) => {
|
|
22
|
+
console.error(`thisispaper-mcp: failed to launch mcp-remote via npx: ${err.message}`);
|
|
23
|
+
process.exit(1);
|
|
24
|
+
});
|
package/package.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "thisispaper-mcp",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Search 2,500+ curated architecture, design, photography and art projects. Fifteen years of human curation, structured for agents: search, visual similarity, and full project metadata with material, light, mood and composition tags. Free tier, no signup to try.",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"mcp",
|
|
7
|
+
"model-context-protocol",
|
|
8
|
+
"mcp-server",
|
|
9
|
+
"architecture",
|
|
10
|
+
"design",
|
|
11
|
+
"photography",
|
|
12
|
+
"art",
|
|
13
|
+
"thisispaper",
|
|
14
|
+
"api",
|
|
15
|
+
"search"
|
|
16
|
+
],
|
|
17
|
+
"homepage": "https://www.thisispaper.com/intelligence/api-docs",
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/zaxarovcom/thisispaper-mcp/issues"
|
|
20
|
+
},
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/zaxarovcom/thisispaper-mcp.git"
|
|
24
|
+
},
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"author": "Thisispaper <alexander@thisispaper.com> (https://www.thisispaper.com)",
|
|
27
|
+
"type": "module",
|
|
28
|
+
"bin": {
|
|
29
|
+
"thisispaper-mcp": "bin/thisispaper-mcp.js"
|
|
30
|
+
},
|
|
31
|
+
"files": [
|
|
32
|
+
"bin",
|
|
33
|
+
"README.md",
|
|
34
|
+
"LICENSE"
|
|
35
|
+
],
|
|
36
|
+
"engines": {
|
|
37
|
+
"node": ">=18"
|
|
38
|
+
}
|
|
39
|
+
}
|