Skip to content

Commit 581224b

Browse files
authored
Add Ref MCP server (#233)
Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com>
1 parent 03a10eb commit 581224b

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

servers/tools.ref-mcp-npx.json

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "tools.ref-mcp-npx",
4+
"name": "Ref (npx)",
5+
"alias": "ref",
6+
"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.",
7+
"logo": "https://avatars.githubusercontent.com/u/210568548?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"documentation"
11+
],
12+
"tags": [
13+
"documentation",
14+
"docs",
15+
"search",
16+
"api-reference",
17+
"context",
18+
"coding-agent"
19+
],
20+
"transport": {
21+
"type": "stdio",
22+
"command": "npx",
23+
"args": [
24+
"-y",
25+
"ref-tools-mcp"
26+
],
27+
"env": {
28+
"REF_API_KEY": "${input:REF_API_KEY}"
29+
},
30+
"metadata": {
31+
"inputs": [
32+
{
33+
"id": "REF_API_KEY",
34+
"label": "Ref API Key",
35+
"description": "API key for your Ref account. Used to authenticate documentation search and URL-read requests.",
36+
"type": "text",
37+
"required": true,
38+
"secret": true,
39+
"placeholder": "ref-****************",
40+
"obtain": {
41+
"url": "https://ref.tools/keys",
42+
"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",
43+
"button_label": "Get API Key"
44+
}
45+
}
46+
]
47+
}
48+
},
49+
"auth": {
50+
"type": "api_key",
51+
"instructions": "Create an API key in your Ref account at https://ref.tools/keys and provide it as REF_API_KEY."
52+
},
53+
"contributor": {
54+
"name": "Ref",
55+
"github": "ref-tools",
56+
"url": "https://ref.tools"
57+
},
58+
"links": {
59+
"repository": "https://github.com/ref-tools/ref-tools-mcp",
60+
"homepage": "https://ref.tools",
61+
"documentation": "https://docs.ref.tools"
62+
},
63+
"platforms": [
64+
"all"
65+
],
66+
"capabilities": {
67+
"tools": true,
68+
"resources": false,
69+
"prompts": false,
70+
"read_only_mode": false
71+
},
72+
"changelog_url": "https://github.com/ref-tools/ref-tools-mcp/releases"
73+
}

0 commit comments

Comments
 (0)