-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathtools.ref-mcp-npx.json
More file actions
73 lines (73 loc) · 2.06 KB
/
Copy pathtools.ref-mcp-npx.json
File metadata and controls
73 lines (73 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"$schema": "../schemas/server-definition.schema.json",
"id": "tools.ref-mcp-npx",
"name": "Ref (npx)",
"alias": "ref",
"description": "Token-efficient documentation search for coding agents. Searches public and private technical docs, APIs, and libraries, and reads URLs as markdown to keep the context window lean.",
"logo": "https://avatars.githubusercontent.com/u/210568548?v=4",
"schema_version": "2.1",
"categories": [
"documentation"
],
"tags": [
"documentation",
"docs",
"search",
"api-reference",
"context",
"coding-agent"
],
"transport": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"ref-tools-mcp"
],
"env": {
"REF_API_KEY": "${input:REF_API_KEY}"
},
"metadata": {
"inputs": [
{
"id": "REF_API_KEY",
"label": "Ref API Key",
"description": "API key for your Ref account. Used to authenticate documentation search and URL-read requests.",
"type": "text",
"required": true,
"secret": true,
"placeholder": "ref-****************",
"obtain": {
"url": "https://ref.tools/keys",
"instructions": "1. Sign in to your Ref account at https://ref.tools\n2. Open the API keys page at https://ref.tools/keys\n3. Create or copy an API key\n4. Paste it here",
"button_label": "Get API Key"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create an API key in your Ref account at https://ref.tools/keys and provide it as REF_API_KEY."
},
"contributor": {
"name": "Ref",
"github": "ref-tools",
"url": "https://ref.tools"
},
"links": {
"repository": "https://github.com/ref-tools/ref-tools-mcp",
"homepage": "https://ref.tools",
"documentation": "https://docs.ref.tools"
},
"platforms": [
"all"
],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
},
"changelog_url": "https://github.com/ref-tools/ref-tools-mcp/releases"
}