tachibot-mcp 2.0.2
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/.env.example +260 -0
- package/CHANGELOG.md +54 -0
- package/CODE_OF_CONDUCT.md +56 -0
- package/CONTRIBUTING.md +54 -0
- package/Dockerfile +36 -0
- package/LICENSE +644 -0
- package/README.md +201 -0
- package/SECURITY.md +95 -0
- package/dist/personality/komaai-expressions.js +12 -0
- package/dist/profiles/balanced.json +33 -0
- package/dist/profiles/code_focus.json +33 -0
- package/dist/profiles/full.json +33 -0
- package/dist/profiles/minimal.json +33 -0
- package/dist/profiles/research_power.json +33 -0
- package/dist/scripts/build-profiles.js +46 -0
- package/dist/src/application/services/focus/FocusModeRegistry.js +46 -0
- package/dist/src/application/services/focus/FocusTool.service.js +109 -0
- package/dist/src/application/services/focus/ModeRegistry.js +46 -0
- package/dist/src/application/services/focus/modes/focus-deep.mode.js +27 -0
- package/dist/src/application/services/focus/modes/status.mode.js +50 -0
- package/dist/src/application/services/focus/modes/tachibot-status.mode.js +50 -0
- package/dist/src/collaborative-orchestrator.js +391 -0
- package/dist/src/config/model-constants.js +188 -0
- package/dist/src/config/model-defaults.js +57 -0
- package/dist/src/config/model-preferences.js +382 -0
- package/dist/src/config/timeout-config.js +130 -0
- package/dist/src/config.js +173 -0
- package/dist/src/domain/interfaces/IFocusMode.js +5 -0
- package/dist/src/domain/interfaces/IProvider.js +6 -0
- package/dist/src/domain/interfaces/ITool.js +5 -0
- package/dist/src/focus-deep.js +245 -0
- package/dist/src/infrastructure/ascii/art/robots.ascii.js +16 -0
- package/dist/src/mcp-client.js +90 -0
- package/dist/src/memory/index.js +17 -0
- package/dist/src/memory/memory-config.js +135 -0
- package/dist/src/memory/memory-interface.js +174 -0
- package/dist/src/memory/memory-manager.js +383 -0
- package/dist/src/memory/providers/devlog-provider.js +385 -0
- package/dist/src/memory/providers/hybrid-provider.js +399 -0
- package/dist/src/memory/providers/local-provider.js +388 -0
- package/dist/src/memory/providers/mem0-provider.js +337 -0
- package/dist/src/modes/architect.js +477 -0
- package/dist/src/modes/auditor.js +362 -0
- package/dist/src/modes/challenger.js +841 -0
- package/dist/src/modes/code-reviewer.js +382 -0
- package/dist/src/modes/commit-guardian.js +424 -0
- package/dist/src/modes/documentation-writer.js +572 -0
- package/dist/src/modes/scout.js +587 -0
- package/dist/src/modes/shared/helpers/challenger-helpers.js +454 -0
- package/dist/src/modes/shared/helpers/index.js +17 -0
- package/dist/src/modes/shared/helpers/scout-helpers.js +270 -0
- package/dist/src/modes/shared/helpers/verifier-helpers.js +332 -0
- package/dist/src/modes/test-architect.js +767 -0
- package/dist/src/modes/verifier.js +378 -0
- package/dist/src/monitoring/performance-monitor.js +435 -0
- package/dist/src/optimization/batch-executor.js +121 -0
- package/dist/src/optimization/context-pruner.js +196 -0
- package/dist/src/optimization/cost-monitor.js +338 -0
- package/dist/src/optimization/index.js +65 -0
- package/dist/src/optimization/model-router.js +264 -0
- package/dist/src/optimization/result-cache.js +114 -0
- package/dist/src/optimization/token-optimizer.js +257 -0
- package/dist/src/optimization/token-tracker.js +118 -0
- package/dist/src/orchestrator-instructions.js +128 -0
- package/dist/src/orchestrator-lite.js +139 -0
- package/dist/src/orchestrator.js +191 -0
- package/dist/src/orchestrators/collaborative/interfaces/IToolExecutionEngine.js +1 -0
- package/dist/src/orchestrators/collaborative/interfaces/IToolExecutionStrategy.js +5 -0
- package/dist/src/orchestrators/collaborative/interfaces/IVisualizationRenderer.js +1 -0
- package/dist/src/orchestrators/collaborative/registries/ModelProviderRegistry.js +95 -0
- package/dist/src/orchestrators/collaborative/registries/ToolAdapterRegistry.js +64 -0
- package/dist/src/orchestrators/collaborative/services/tool-execution/ToolExecutionService.js +502 -0
- package/dist/src/orchestrators/collaborative/services/visualization/VisualizationService.js +206 -0
- package/dist/src/orchestrators/collaborative/types/session-types.js +5 -0
- package/dist/src/profiles/balanced.js +37 -0
- package/dist/src/profiles/code_focus.js +37 -0
- package/dist/src/profiles/debug_intensive.js +59 -0
- package/dist/src/profiles/full.js +37 -0
- package/dist/src/profiles/minimal.js +37 -0
- package/dist/src/profiles/research_code.js +59 -0
- package/dist/src/profiles/research_power.js +37 -0
- package/dist/src/profiles/types.js +5 -0
- package/dist/src/profiles/workflow_builder.js +53 -0
- package/dist/src/prompt-engineer-lite.js +78 -0
- package/dist/src/prompt-engineer.js +399 -0
- package/dist/src/reasoning-chain.js +508 -0
- package/dist/src/sequential-thinking.js +291 -0
- package/dist/src/server-diagnostic.js +74 -0
- package/dist/src/server-raw.js +158 -0
- package/dist/src/server-simple.js +58 -0
- package/dist/src/server.js +514 -0
- package/dist/src/session/session-logger.js +617 -0
- package/dist/src/session/session-manager.js +571 -0
- package/dist/src/session/session-tools.js +400 -0
- package/dist/src/tools/advanced-modes.js +200 -0
- package/dist/src/tools/claude-integration.js +356 -0
- package/dist/src/tools/consolidated/ai-router.js +174 -0
- package/dist/src/tools/consolidated/ai-tool.js +48 -0
- package/dist/src/tools/consolidated/brainstorm-tool.js +87 -0
- package/dist/src/tools/consolidated/environment-detector.js +80 -0
- package/dist/src/tools/consolidated/index.js +50 -0
- package/dist/src/tools/consolidated/search-tool.js +110 -0
- package/dist/src/tools/consolidated/workflow-tool.js +238 -0
- package/dist/src/tools/gemini-tools.js +329 -0
- package/dist/src/tools/grok-enhanced.js +376 -0
- package/dist/src/tools/grok-tools.js +299 -0
- package/dist/src/tools/lmstudio-tools.js +223 -0
- package/dist/src/tools/openai-tools.js +498 -0
- package/dist/src/tools/openrouter-tools.js +317 -0
- package/dist/src/tools/optimized-wrapper.js +204 -0
- package/dist/src/tools/perplexity-tools.js +294 -0
- package/dist/src/tools/pingpong-tool.js +343 -0
- package/dist/src/tools/qwen-wrapper.js +74 -0
- package/dist/src/tools/tool-router.js +444 -0
- package/dist/src/tools/unified-ai-provider.js +260 -0
- package/dist/src/tools/workflow-runner.js +425 -0
- package/dist/src/tools/workflow-validator-tool.js +107 -0
- package/dist/src/types.js +23 -0
- package/dist/src/utils/input-validator.js +130 -0
- package/dist/src/utils/model-router.js +91 -0
- package/dist/src/utils/progress-stream.js +255 -0
- package/dist/src/utils/provider-router.js +88 -0
- package/dist/src/utils/smart-api-client.js +146 -0
- package/dist/src/utils/table-builder.js +218 -0
- package/dist/src/utils/timestamp-formatter.js +134 -0
- package/dist/src/utils/tool-compressor.js +257 -0
- package/dist/src/utils/tool-config.js +201 -0
- package/dist/src/validators/dependency-graph-validator.js +147 -0
- package/dist/src/validators/interpolation-validator.js +222 -0
- package/dist/src/validators/output-usage-validator.js +151 -0
- package/dist/src/validators/syntax-validator.js +102 -0
- package/dist/src/validators/tool-registry-validator.js +123 -0
- package/dist/src/validators/tool-types.js +97 -0
- package/dist/src/validators/types.js +8 -0
- package/dist/src/validators/workflow-validator.js +134 -0
- package/dist/src/visualizer-lite.js +42 -0
- package/dist/src/visualizer.js +179 -0
- package/dist/src/workflows/circuit-breaker.js +199 -0
- package/dist/src/workflows/custom-workflows.js +451 -0
- package/dist/src/workflows/engine/AutoSynthesizer.js +97 -0
- package/dist/src/workflows/engine/StepParameterResolver.js +74 -0
- package/dist/src/workflows/engine/VariableInterpolator.js +123 -0
- package/dist/src/workflows/engine/WorkflowDiscovery.js +125 -0
- package/dist/src/workflows/engine/WorkflowExecutionEngine.js +485 -0
- package/dist/src/workflows/engine/WorkflowExecutor.js +113 -0
- package/dist/src/workflows/engine/WorkflowFileManager.js +244 -0
- package/dist/src/workflows/engine/WorkflowHelpers.js +114 -0
- package/dist/src/workflows/engine/WorkflowOutputFormatter.js +83 -0
- package/dist/src/workflows/engine/events/WorkflowEventBus.js +132 -0
- package/dist/src/workflows/engine/events/interfaces/IEventBus.js +5 -0
- package/dist/src/workflows/engine/handlers/ErrorRecoveryHandler.js +162 -0
- package/dist/src/workflows/engine/handlers/PromptEnhancementHandler.js +115 -0
- package/dist/src/workflows/engine/handlers/SessionPersistenceHandler.js +167 -0
- package/dist/src/workflows/engine/handlers/StepExecutionHandler.js +231 -0
- package/dist/src/workflows/engine/handlers/ToolInvocationHandler.js +46 -0
- package/dist/src/workflows/engine/interfaces/IAutoSynthesizer.js +5 -0
- package/dist/src/workflows/engine/interfaces/IStepParameterResolver.js +5 -0
- package/dist/src/workflows/engine/interfaces/IVariableInterpolator.js +5 -0
- package/dist/src/workflows/engine/interfaces/IWorkflowDiscovery.js +4 -0
- package/dist/src/workflows/engine/interfaces/IWorkflowFileManager.js +5 -0
- package/dist/src/workflows/engine/interfaces/IWorkflowOutputFormatter.js +5 -0
- package/dist/src/workflows/engine/state/WorkflowStateMachine.js +194 -0
- package/dist/src/workflows/engine/state/interfaces/IStateMachine.js +17 -0
- package/dist/src/workflows/fallback-strategies.js +373 -0
- package/dist/src/workflows/message-queue.js +455 -0
- package/dist/src/workflows/model-router.js +189 -0
- package/dist/src/workflows/orchestrator-examples.js +174 -0
- package/dist/src/workflows/orchestrator-integration.js +200 -0
- package/dist/src/workflows/self-healing.js +524 -0
- package/dist/src/workflows/tool-mapper.js +407 -0
- package/dist/src/workflows/tool-orchestrator.js +796 -0
- package/dist/src/workflows/workflow-engine.js +573 -0
- package/dist/src/workflows/workflow-parser.js +283 -0
- package/dist/src/workflows/workflow-types.js +95 -0
- package/dist/src/workflows.js +568 -0
- package/dist/test-workflow-file-output.js +93 -0
- package/docs/API_KEYS.md +570 -0
- package/docs/CLAUDE_CODE_SETUP.md +181 -0
- package/docs/CLAUDE_DESKTOP_MANUAL.md +127 -0
- package/docs/CONFIGURATION.md +745 -0
- package/docs/FOCUS_MODES.md +240 -0
- package/docs/INSTALLATION_BOTH.md +145 -0
- package/docs/TERMS.md +352 -0
- package/docs/TOOLS_REFERENCE.md +1622 -0
- package/docs/TOOL_PARAMETERS.md +496 -0
- package/docs/TOOL_PROFILES.md +236 -0
- package/docs/WORKFLOWS.md +987 -0
- package/docs/WORKFLOW_OUTPUT.md +198 -0
- package/docs/WORKFLOW_PROGRESS_TRACKING.md +305 -0
- package/docs/workflows/design-brainstorm.md +335 -0
- package/package.json +97 -0
- package/profiles/balanced.json +37 -0
- package/profiles/code_focus.json +37 -0
- package/profiles/debug_intensive.json +34 -0
- package/profiles/full.json +37 -0
- package/profiles/minimal.json +37 -0
- package/profiles/research_power.json +37 -0
- package/profiles/workflow_builder.json +37 -0
- package/smithery.yaml +66 -0
- package/start.sh +8 -0
- package/tools.config.json +81 -0
- package/tsconfig.json +18 -0
- package/workflows/accessibility-code-audit.yaml +92 -0
- package/workflows/code-architecture-review.yaml +202 -0
- package/workflows/code-review.yaml +142 -0
- package/workflows/core/iterative-problem-solver.yaml +283 -0
- package/workflows/creative-brainstorm-yaml.yaml +215 -0
- package/workflows/pingpong.yaml +141 -0
- package/workflows/system/README.md +412 -0
- package/workflows/system/challenger.yaml +175 -0
- package/workflows/system/scout.yaml +164 -0
- package/workflows/system/verifier.yaml +133 -0
- package/workflows/ultra-creative-brainstorm.yaml +318 -0
- package/workflows/ux-research-flow.yaml +92 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
# Claude Code Setup Guide
|
|
2
|
+
|
|
3
|
+
This guide covers setting up TachiBot MCP specifically for **Claude Code** (the CLI tool).
|
|
4
|
+
|
|
5
|
+
## Prerequisites
|
|
6
|
+
|
|
7
|
+
1. **Install dependencies:**
|
|
8
|
+
```bash
|
|
9
|
+
cd tachibot-mcp
|
|
10
|
+
npm install
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
2. **Build the project:**
|
|
14
|
+
```bash
|
|
15
|
+
npm run build
|
|
16
|
+
```
|
|
17
|
+
This compiles TypeScript to JavaScript in the `dist/` directory.
|
|
18
|
+
|
|
19
|
+
## Configuration
|
|
20
|
+
|
|
21
|
+
### 1. Locate Your Config File
|
|
22
|
+
|
|
23
|
+
Claude Code configuration is at: `~/.config/claude-code/config.json`
|
|
24
|
+
|
|
25
|
+
### 2. Add TachiBot MCP Server
|
|
26
|
+
|
|
27
|
+
Edit the config file and add the tachibot-mcp server:
|
|
28
|
+
|
|
29
|
+
```json
|
|
30
|
+
{
|
|
31
|
+
"mcpServers": {
|
|
32
|
+
"tachibot-mcp": {
|
|
33
|
+
"command": "node",
|
|
34
|
+
"args": ["/FULL/ABSOLUTE/PATH/TO/tachibot-mcp/dist/src/server.js"],
|
|
35
|
+
"env": {
|
|
36
|
+
"PERPLEXITY_API_KEY": "your-actual-key-here",
|
|
37
|
+
"GROK_API_KEY": "your-actual-key-here",
|
|
38
|
+
"OPENAI_API_KEY": "your-actual-key-here",
|
|
39
|
+
"GOOGLE_API_KEY": "your-gemini-key-here",
|
|
40
|
+
"OPENROUTER_API_KEY": "your-key-here"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
**Critical:**
|
|
48
|
+
- Replace `/FULL/ABSOLUTE/PATH/TO/` with your actual absolute path
|
|
49
|
+
- Example: `/Users/yourname/Documents/tachibot-mcp/dist/src/server.js`
|
|
50
|
+
- Do NOT use relative paths like `./dist/src/server.js` or `~/tachibot-mcp/...`
|
|
51
|
+
|
|
52
|
+
### 3. Connect to the Server
|
|
53
|
+
|
|
54
|
+
In Claude Code, run:
|
|
55
|
+
```
|
|
56
|
+
/mcp
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
This will attempt to connect to all configured MCP servers.
|
|
60
|
+
|
|
61
|
+
## Troubleshooting
|
|
62
|
+
|
|
63
|
+
### "Failed to reconnect" Error
|
|
64
|
+
|
|
65
|
+
**Problem:** Server fails to start or connect
|
|
66
|
+
|
|
67
|
+
**Solutions:**
|
|
68
|
+
|
|
69
|
+
1. **Verify the build:**
|
|
70
|
+
```bash
|
|
71
|
+
cd tachibot-mcp
|
|
72
|
+
ls -la dist/src/server.js
|
|
73
|
+
```
|
|
74
|
+
If the file doesn't exist, run `npm run build`
|
|
75
|
+
|
|
76
|
+
2. **Check the path in config:**
|
|
77
|
+
- Must be an absolute path
|
|
78
|
+
- File must exist at that path
|
|
79
|
+
- Use `pwd` in the tachibot-mcp directory to get the full path
|
|
80
|
+
|
|
81
|
+
3. **Test the server manually:**
|
|
82
|
+
```bash
|
|
83
|
+
cd tachibot-mcp
|
|
84
|
+
node dist/src/server.js
|
|
85
|
+
```
|
|
86
|
+
Should start without errors and show "🚀 TachiBot MCP Server"
|
|
87
|
+
|
|
88
|
+
4. **Restart Claude Code:**
|
|
89
|
+
- Exit Claude Code completely
|
|
90
|
+
- Start a new session
|
|
91
|
+
- Run `/mcp` again
|
|
92
|
+
|
|
93
|
+
### "No valid configuration found" Warning
|
|
94
|
+
|
|
95
|
+
This is normal if you haven't created a `tools.config.json` file. The server will use all tools by default.
|
|
96
|
+
|
|
97
|
+
To customize, create `tools.config.json`:
|
|
98
|
+
```json
|
|
99
|
+
{
|
|
100
|
+
"activeProfile": "balanced"
|
|
101
|
+
}
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
See [TOOL_PROFILES.md](../TOOL_PROFILES.md) for profile options.
|
|
105
|
+
|
|
106
|
+
## Profile Configuration
|
|
107
|
+
|
|
108
|
+
You can control which tools are loaded using profiles:
|
|
109
|
+
|
|
110
|
+
### Via Environment Variable
|
|
111
|
+
|
|
112
|
+
In your config.json:
|
|
113
|
+
```json
|
|
114
|
+
{
|
|
115
|
+
"mcpServers": {
|
|
116
|
+
"tachibot-mcp": {
|
|
117
|
+
"command": "node",
|
|
118
|
+
"args": ["/path/to/dist/src/server.js"],
|
|
119
|
+
"env": {
|
|
120
|
+
"TACHIBOT_PROFILE": "minimal",
|
|
121
|
+
"PERPLEXITY_API_KEY": "...",
|
|
122
|
+
...
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
### Available Profiles
|
|
130
|
+
|
|
131
|
+
| Profile | Tools | Tokens | Best For |
|
|
132
|
+
|---------|-------|--------|----------|
|
|
133
|
+
| `minimal` | 8 | ~4-5k | Quick tasks, learning |
|
|
134
|
+
| `research_power` | 15 | ~9-10k | Research, brainstorming |
|
|
135
|
+
| `code_focus` | 13 | ~8-9k | Development, debugging |
|
|
136
|
+
| `balanced` | 17 | ~10-11k | General-purpose (default) |
|
|
137
|
+
| `full` | 26 | ~18-19k | Maximum capability |
|
|
138
|
+
|
|
139
|
+
## Development Workflow
|
|
140
|
+
|
|
141
|
+
When working on the tachibot-mcp codebase:
|
|
142
|
+
|
|
143
|
+
1. **Make changes** to TypeScript files in `src/`
|
|
144
|
+
|
|
145
|
+
2. **Rebuild:**
|
|
146
|
+
```bash
|
|
147
|
+
npm run build
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
3. **Reconnect in Claude Code:**
|
|
151
|
+
```
|
|
152
|
+
/mcp
|
|
153
|
+
```
|
|
154
|
+
Or restart Claude Code entirely
|
|
155
|
+
|
|
156
|
+
## API Keys
|
|
157
|
+
|
|
158
|
+
Get your API keys from:
|
|
159
|
+
|
|
160
|
+
- **Perplexity:** https://www.perplexity.ai/settings/api
|
|
161
|
+
- **Grok (xAI):** https://console.x.ai/
|
|
162
|
+
- **OpenAI:** https://platform.openai.com/api-keys
|
|
163
|
+
- **Google (Gemini):** https://makersuite.google.com/app/apikey
|
|
164
|
+
- **OpenRouter:** https://openrouter.ai/keys
|
|
165
|
+
|
|
166
|
+
See [API_KEYS.md](API_KEYS.md) for pricing and free tier information.
|
|
167
|
+
|
|
168
|
+
## Next Steps
|
|
169
|
+
|
|
170
|
+
- Check [TOOLS_REFERENCE.md](TOOLS_REFERENCE.md) for complete tool documentation
|
|
171
|
+
- See [WORKFLOWS.md](WORKFLOWS.md) to create custom multi-step AI workflows
|
|
172
|
+
- Review [CONFIGURATION.md](CONFIGURATION.md) for advanced settings
|
|
173
|
+
|
|
174
|
+
## Support
|
|
175
|
+
|
|
176
|
+
If you encounter issues:
|
|
177
|
+
|
|
178
|
+
1. Check server logs when running manually: `node dist/src/server.js`
|
|
179
|
+
2. Verify all paths are absolute, not relative
|
|
180
|
+
3. Ensure `npm run build` completed successfully
|
|
181
|
+
4. Review the [GitHub Issues](https://github.com/byPawel/tachibot-mcp/issues)
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
# Claude Desktop Manual Installation
|
|
2
|
+
|
|
3
|
+
## Method 1: Via Extension Installer (Recommended)
|
|
4
|
+
|
|
5
|
+
1. Open Claude Desktop
|
|
6
|
+
2. Navigate to: **Settings** → **Developer** → **Extensions**
|
|
7
|
+
3. Click **"Install Extension"**
|
|
8
|
+
4. Select the `tachibot-official.mcpb` file
|
|
9
|
+
5. Enter your API keys when prompted
|
|
10
|
+
|
|
11
|
+
## Method 2: Manual JSON Configuration
|
|
12
|
+
|
|
13
|
+
If the extension installer isn't working, configure manually:
|
|
14
|
+
|
|
15
|
+
### 1. Locate Claude Desktop Config
|
|
16
|
+
|
|
17
|
+
**macOS:**
|
|
18
|
+
```bash
|
|
19
|
+
~/Library/Application Support/Claude/claude_desktop_config.json
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
**Windows:**
|
|
23
|
+
```
|
|
24
|
+
%APPDATA%\Claude\claude_desktop_config.json
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Linux:**
|
|
28
|
+
```
|
|
29
|
+
~/.config/Claude/claude_desktop_config.json
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
### 2. Edit Configuration
|
|
33
|
+
|
|
34
|
+
Add this to your `claude_desktop_config.json`:
|
|
35
|
+
|
|
36
|
+
```json
|
|
37
|
+
{
|
|
38
|
+
"mcpServers": {
|
|
39
|
+
"tachibot": {
|
|
40
|
+
"command": "node",
|
|
41
|
+
"args": ["/absolute/path/to/tachibot-mcp/dist/src/server.js"],
|
|
42
|
+
"env": {
|
|
43
|
+
"TACHIBOT_PROFILE": "balanced",
|
|
44
|
+
"PERPLEXITY_API_KEY": "your-perplexity-key",
|
|
45
|
+
"GROK_API_KEY": "your-grok-key",
|
|
46
|
+
"OPENAI_API_KEY": "your-openai-key",
|
|
47
|
+
"GOOGLE_API_KEY": "your-gemini-key"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
**Note:** Replace `/absolute/path/to/tachibot-mcp/` with your actual installation path.
|
|
55
|
+
|
|
56
|
+
### 3. For Global NPM Installation
|
|
57
|
+
|
|
58
|
+
If you installed via npm globally:
|
|
59
|
+
|
|
60
|
+
```json
|
|
61
|
+
{
|
|
62
|
+
"mcpServers": {
|
|
63
|
+
"tachibot": {
|
|
64
|
+
"command": "tachibot",
|
|
65
|
+
"env": {
|
|
66
|
+
"TACHIBOT_PROFILE": "balanced",
|
|
67
|
+
"PERPLEXITY_API_KEY": "your-key",
|
|
68
|
+
"GROK_API_KEY": "your-key",
|
|
69
|
+
"OPENAI_API_KEY": "your-key"
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
## Method 3: Drag and Drop (If Supported)
|
|
77
|
+
|
|
78
|
+
Some versions of Claude Desktop support drag-and-drop:
|
|
79
|
+
|
|
80
|
+
1. Open Claude Desktop
|
|
81
|
+
2. Drag the `tachibot-official.mcpb` file onto the Claude Desktop window
|
|
82
|
+
3. Follow the installation prompts
|
|
83
|
+
|
|
84
|
+
## Troubleshooting
|
|
85
|
+
|
|
86
|
+
### File Association Issues
|
|
87
|
+
|
|
88
|
+
If .mcpb files open in the wrong application:
|
|
89
|
+
|
|
90
|
+
**macOS:**
|
|
91
|
+
1. Right-click the .mcpb file
|
|
92
|
+
2. Select "Get Info"
|
|
93
|
+
3. Under "Open with:", select Claude Desktop
|
|
94
|
+
4. Click "Change All..."
|
|
95
|
+
|
|
96
|
+
**Windows:**
|
|
97
|
+
1. Right-click the .mcpb file
|
|
98
|
+
2. Select "Open with" → "Choose another app"
|
|
99
|
+
3. Select Claude Desktop
|
|
100
|
+
4. Check "Always use this app"
|
|
101
|
+
|
|
102
|
+
### Verify Installation
|
|
103
|
+
|
|
104
|
+
After installation, restart Claude Desktop and check if TachiBot tools are available by typing:
|
|
105
|
+
- "Use the think tool"
|
|
106
|
+
- "Use the perplexity_ask tool"
|
|
107
|
+
|
|
108
|
+
If tools appear in the autocomplete or work when invoked, installation was successful.
|
|
109
|
+
|
|
110
|
+
## Alternative: Use NPM Global Install
|
|
111
|
+
|
|
112
|
+
If manual configuration is preferred:
|
|
113
|
+
|
|
114
|
+
```bash
|
|
115
|
+
# Install globally
|
|
116
|
+
npm install -g tachibot-mcp
|
|
117
|
+
|
|
118
|
+
# Find installation path
|
|
119
|
+
npm list -g tachibot-mcp
|
|
120
|
+
|
|
121
|
+
# Use that path in claude_desktop_config.json
|
|
122
|
+
```
|
|
123
|
+
|
|
124
|
+
## Need Help?
|
|
125
|
+
|
|
126
|
+
- Check Claude Desktop logs: **Help** → **Toggle Developer Tools** → **Console**
|
|
127
|
+
- Report issues: https://github.com/byPawel/tachibot-mcp/issues
|