@fre4x/grok 1.0.41
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/README.md +51 -0
- package/dist/index.js +36510 -0
- package/package.json +45 -0
package/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# grok — The Infinite Oracle
|
|
2
|
+
|
|
3
|
+
> *Searching the stream of everything, imagining the void, and animating the future. A B1TE that sees all.*
|
|
4
|
+
|
|
5
|
+
Part of **[FRE4X-B1TE](../)** — a monorepo of MCP servers built for autonomous agents.
|
|
6
|
+
|
|
7
|
+
xAI's Grok is more than an LLM. It's a real-time sensor for the global consciousness (X) and a multi-modal engine for creation. This server gives autonomous agents the ability to search the web with high reasoning, tap into the real-time X stream, and generate high-fidelity images and videos.
|
|
8
|
+
|
|
9
|
+
## Tools
|
|
10
|
+
|
|
11
|
+
| Tool | Capability |
|
|
12
|
+
|------|------------|
|
|
13
|
+
| `x_search` | Real-time search of X (Twitter) posts, users, and threads |
|
|
14
|
+
| `web_search` | Reasoning-based web search using Grok's latest models |
|
|
15
|
+
| `grok_imagine` | Generate high-quality images from text prompts |
|
|
16
|
+
| `grok_animate` | Generate or animate video from text or image prompts (Asynchronous) |
|
|
17
|
+
| `check_video_status` | Check the status of a video generation task via its request ID |
|
|
18
|
+
|
|
19
|
+
## Configuration
|
|
20
|
+
|
|
21
|
+
Required Environment Variable:
|
|
22
|
+
- `XAI_API_KEY`: Your xAI API key from [console.x.ai](https://console.x.ai/).
|
|
23
|
+
|
|
24
|
+
## Deploy
|
|
25
|
+
|
|
26
|
+
```json
|
|
27
|
+
{
|
|
28
|
+
"mcpServers": {
|
|
29
|
+
"grok": {
|
|
30
|
+
"command": "npx",
|
|
31
|
+
"args": ["-y", "@fre4x/grok"],
|
|
32
|
+
"env": {
|
|
33
|
+
"XAI_API_KEY": "your-key-here"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Development
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
npm install
|
|
44
|
+
npm run dev # tsx, no build
|
|
45
|
+
npm run build # esbuild → dist/
|
|
46
|
+
npm run typecheck # tsc verification
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## License
|
|
50
|
+
|
|
51
|
+
MIT — **WE ARE THE FRE4X.**
|