autorouter-mcp 0.1.0

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/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "autorouter-mcp",
3
+ "version": "0.1.0",
4
+ "description": "One search tool instead of every tool: an MCP capability router for Claude Code, Codex, Cursor and anything else that speaks MCP.",
5
+ "mcpName": "io.github.webb-ventures/autorouter",
6
+ "license": "MIT",
7
+ "author": "Webb Ventures",
8
+ "homepage": "https://github.com/Webb-Ventures/autorouter#readme",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/Webb-Ventures/autorouter.git"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/Webb-Ventures/autorouter/issues"
15
+ },
16
+ "keywords": [
17
+ "mcp",
18
+ "model-context-protocol",
19
+ "mcp-server",
20
+ "router",
21
+ "claude-code",
22
+ "codex",
23
+ "cursor",
24
+ "context",
25
+ "tools",
26
+ "agent"
27
+ ],
28
+ "type": "module",
29
+ "bin": {
30
+ "autorouter": "dist/cli.js"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "README.md",
35
+ "LICENSE",
36
+ "server.json"
37
+ ],
38
+ "engines": {
39
+ "node": ">=18"
40
+ },
41
+ "publishConfig": {
42
+ "access": "public"
43
+ },
44
+ "scripts": {
45
+ "build": "bun build src/cli.ts --target=node --outfile dist/cli.js",
46
+ "serve": "bun run src/cli.ts serve",
47
+ "doctor": "bun run src/cli.ts doctor",
48
+ "test": "bun test",
49
+ "prepublishOnly": "bun run build",
50
+ "typecheck": "tsc --noEmit"
51
+ },
52
+ "devDependencies": {
53
+ "@types/bun": "latest",
54
+ "typescript": "^5"
55
+ },
56
+ "peerDependencies": {
57
+ "typescript": "^5"
58
+ },
59
+ "peerDependenciesMeta": {
60
+ "typescript": {
61
+ "optional": true
62
+ }
63
+ },
64
+ "dependencies": {
65
+ "@modelcontextprotocol/sdk": "^1.30.0",
66
+ "smol-toml": "^1.8.0"
67
+ }
68
+ }
package/server.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.webb-ventures/autorouter",
4
+ "title": "autorouter",
5
+ "description": "An MCP capability router: one search tool instead of every server's tool schema.",
6
+ "version": "0.1.0",
7
+ "websiteUrl": "https://github.com/Webb-Ventures/autorouter",
8
+ "repository": {
9
+ "url": "https://github.com/Webb-Ventures/autorouter",
10
+ "source": "github"
11
+ },
12
+ "packages": [
13
+ {
14
+ "registryType": "npm",
15
+ "registryBaseUrl": "https://registry.npmjs.org",
16
+ "identifier": "autorouter-mcp",
17
+ "version": "0.1.0",
18
+ "transport": { "type": "stdio" },
19
+ "packageArguments": [{ "type": "positional", "value": "serve" }],
20
+ "environmentVariables": [
21
+ {
22
+ "name": "AUTOROUTER_CONFIG",
23
+ "description": "Path to autorouter.json. Defaults to the standard lookup chain (./.autorouter.json, ~/.config/autorouter/config.json, …).",
24
+ "isRequired": false
25
+ },
26
+ {
27
+ "name": "AUTOROUTER_IMPORT",
28
+ "description": "Comma-separated harness configs to import: claude, codex, cursor, vscode, plugins.",
29
+ "isRequired": false
30
+ },
31
+ {
32
+ "name": "AUTOROUTER_SELECTOR_MODE",
33
+ "description": "Reranker backend: auto | sampling | cli | api | off.",
34
+ "isRequired": false
35
+ },
36
+ {
37
+ "name": "AUTOROUTER_SELECTOR_MODEL",
38
+ "description": "Model the selector reranks with, e.g. haiku.",
39
+ "isRequired": false
40
+ }
41
+ ]
42
+ }
43
+ ]
44
+ }