docs(readme): add “Try it now” quick‑start section, npx installation guide, and improve Ollama setup instructions.

This commit is contained in:
2026-04-23 10:25:41 +05:30
parent 498d5c1e30
commit f4215a7c46
+21 -5
View File
@@ -2,6 +2,13 @@
MCP server for exploring the ECMAScript specification and its implementation in [engine262](https://github.com/bendtherules/engine262). MCP server for exploring the ECMAScript specification and its implementation in [engine262](https://github.com/bendtherules/engine262).
## 🎮 Try it now
The fastest way to tinker with JavaScript internals:
- **[Ask262 Chat](http://chat.ask262.bendtherules.in/)** — Ask questions in natural language (register new account)
- **[MCP Inspector](https://ask262.bendtherules.in/)** — Direct access to all mcp tools, no signup needed
## Features ## Features
- **Vector search** ECMAScript specification sections using semantic queries - **Vector search** ECMAScript specification sections using semantic queries
@@ -21,6 +28,18 @@ MCP server for exploring the ECMAScript specification and its implementation in
Use the hosted MCP server without any local setup: Use the hosted MCP server without any local setup:
### Preferred Method: `npx add-mcp`
Install ask262 MCP server to your client with one command:
```bash
npx add-mcp "https://ask262.bendtherules.in/mcp"
```
### Manual Configuration
If you prefer to configure manually:
**Claude Desktop** (`claude_desktop_config.json`): **Claude Desktop** (`claude_desktop_config.json`):
```json ```json
{ {
@@ -46,16 +65,13 @@ Use the hosted MCP server without any local setup:
} }
``` ```
**Experiment with the Inspector:**
Visit `https://ask262.bendtherules.in/` to access the MCP Inspector UI. This provides an interactive interface to test all available tools with custom inputs.
## Local Installation ## Local Installation
### Prerequisites ### Prerequisites
- **Bun**: Version 1.0.0 or higher ([install](https://bun.sh/docs/installation)) - **Bun**: Version 1.0.0 or higher ([install](https://bun.sh/docs/installation))
- **Ollama**: Installed locally with `qwen3-embedding:0.6b` model pulled (`ollama pull qwen3-embedding:0.6b`) - **Ollama**: Installed with `qwen3-embedding:0.6b` \
(`ollama pull qwen3-embedding:0.6b`)
### Setup ### Setup