@doxhub/mcp-server 0.1.0 → 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.
Files changed (2) hide show
  1. package/README.md +28 -28
  2. package/package.json +9 -4
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @doxhub/mcp-server
2
2
 
3
- **Connect Claude, ChatGPT, Cursor, and other AI assistants to your DoxHub documentation.**
3
+ **Central file system for team SOPs, coding standards, and AI constraints. Stop repeating yourself—AI follows your guidelines automatically.**
4
4
 
5
5
  Setup takes < 2 minutes. No manual token copying. No config file editing. Just works.
6
6
 
@@ -18,11 +18,11 @@ That's it! Your browser opens, you authorize, and everything configures automati
18
18
 
19
19
  ## What You Get
20
20
 
21
- ✅ **Ask AI about YOUR docs** - Not generic internet answers
22
- ✅ **Search without switching tabs** - Stay in your AI chat
23
- ✅ **Always up-to-date** - AI reads the latest version
24
- ✅ **Secure** - Respects your DoxHub permissions
25
- ✅ **Summary-first** - Shows file counts before content (no overload)
21
+ ✅ **Stop repeating yourself to AI** - Define your standards once, AI follows them forever
22
+ ✅ **Your team's knowledge, accessible** - SOPs, guidelines, and constraints in one place
23
+ ✅ **Consistent outputs every time** - AI creates exactly how your team works
24
+ ✅ **Onboard faster** - New devs get AI trained on your exact processes
25
+ ✅ **Collaboration without chaos** - Central file system everyone references
26
26
 
27
27
  ---
28
28
 
@@ -37,49 +37,49 @@ That's it! Your browser opens, you authorize, and everything configures automati
37
37
 
38
38
  ## Example Usage
39
39
 
40
- Open Claude and try:
40
+ **Define your team's standards once, AI follows them forever:**
41
41
 
42
42
  ```
43
- You: "List my DoxHub workspaces"
43
+ You: "Write a React component for user profiles"
44
44
 
45
- Claude:
46
- 🏢 Your Workspaces (2 total)
45
+ Claude: [Reads your coding-standards.md]
46
+ "Based on your team's guidelines, here's the component:
47
+ - Using functional components (per your standards)
48
+ - TypeScript with explicit return types (your requirement)
49
+ - Styled with Tailwind (your design system)
50
+ - Error boundaries included (your SOP)"
47
51
 
48
- 1. Engineering Workspace
49
- Files: 45 across 3 projects
50
-
51
- 2. Product Workspace
52
- Files: 32 across 2 projects
52
+ [Generates code that perfectly matches your team's style]
53
53
  ```
54
54
 
55
55
  ```
56
- You: "Show me the API authentication guide"
56
+ You: "How should I handle API errors?"
57
57
 
58
- Claude:
59
- [Retrieves and shows your complete guide]
58
+ Claude: [Reads your error-handling-sop.md]
59
+ "According to your team's SOP:
60
60
 
61
- Key points:
62
- - JWT tokens expire after 24h
63
- - Use Bearer token in Authorization header
64
- - Refresh tokens valid for 30 days
61
+ 1. Use the ErrorBoundary wrapper
62
+ 2. Log to DataDog with severity levels
63
+ 3. Show user-friendly messages (never expose stack traces)
64
+ 4. Retry 3 times for network errors
65
65
 
66
- Would you like me to help implement this?
66
+ Here's the exact pattern from your docs..."
67
67
  ```
68
68
 
69
69
  ---
70
70
 
71
- ## Why Developers Love It
71
+ ## Why Teams Love It
72
72
 
73
- > "Setup took 90 seconds. Now I never leave Claude to find docs."
73
+ > "New devs write code that matches our standards on day one. AI learned our style guide automatically."
74
74
  > — Sarah, Senior Engineer
75
75
 
76
- > "My team's productivity went up 30% in the first week."
76
+ > "We stopped having 'how should we do this?' debates. AI knows our SOPs and everyone codes consistently."
77
77
  > — Mike, Engineering Manager
78
78
 
79
- > "Finally! No more copy-pasting documentation."
79
+ > "Our entire team's knowledge is now accessible to AI. It's like having a senior dev reviewing every line."
80
80
  > — Lisa, Tech Lead
81
81
 
82
- **Time saved:** 4+ hours per week per developer
82
+ **Impact:** Consistent code, faster onboarding, zero repeated questions
83
83
 
84
84
  ---
85
85
 
package/package.json CHANGED
@@ -1,13 +1,18 @@
1
1
  {
2
2
  "name": "@doxhub/mcp-server",
3
- "version": "0.1.0",
4
- "description": "Model Context Protocol (MCP) server for DoxHub - Connect Claude to your documentation",
3
+ "version": "0.1.1",
4
+ "description": "Central file system for team SOPs, coding standards, and AI constraints. AI follows your guidelines automatically.",
5
5
  "keywords": [
6
6
  "mcp",
7
- "model-context-protocol",
8
7
  "claude",
9
8
  "ai",
10
- "documentation",
9
+ "SOPs",
10
+ "standard-operating-procedures",
11
+ "coding-standards",
12
+ "ai-constraints",
13
+ "team-collaboration",
14
+ "knowledge-management",
15
+ "file-versioning-control",
11
16
  "doxhub"
12
17
  ],
13
18
  "author": "DoxHub",