brainfaq-mcp 1.0.0 → 1.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/README.md CHANGED
@@ -10,6 +10,21 @@ Use this command to run the MCP server:
10
10
  npx brainfaq-mcp
11
11
  ```
12
12
 
13
+ To use it in VS Code, add the following JSON snippet to `.vscode/mcp.json` (create the file if you don't have it):
14
+
15
+ ```json
16
+ {
17
+ "servers": {
18
+ "brainfaq-mcp": {
19
+ "command": "npx",
20
+ "args": ["brainfaq-mcp"]
21
+ }
22
+ }
23
+ }
24
+ ```
25
+
26
+ The MCP can be added to other IDEs with LLM agents support (e.g. Cursor) in similar ways. Check their documentation and configure them to run `npx brainfaq-mcp`. It will start the MCP server in stdio mode.
27
+
13
28
  ## Features
14
29
 
15
30
  ### MCP Tools
@@ -69,4 +84,4 @@ npm publish
69
84
 
70
85
  ## License
71
86
 
72
- All work in this repos is licensed under "Creative Commons Attribution-ShareAlike 4.0 International License".
87
+ All work in this repos is licensed under "Creative Commons Attribution-ShareAlike 4.0 International License".
package/build/README.md CHANGED
@@ -10,6 +10,21 @@ Use this command to run the MCP server:
10
10
  npx brainfaq-mcp
11
11
  ```
12
12
 
13
+ To use it in VS Code, add the following JSON snippet to `.vscode/mcp.json` (create the file if you don't have it):
14
+
15
+ ```json
16
+ {
17
+ "servers": {
18
+ "brainfaq-mcp": {
19
+ "command": "npx",
20
+ "args": ["brainfaq-mcp"]
21
+ }
22
+ }
23
+ }
24
+ ```
25
+
26
+ The MCP can be added to other IDEs with LLM agents support (e.g. Cursor) in similar ways. Check their documentation and configure them to run `npx brainfaq-mcp`. It will start the MCP server in stdio mode.
27
+
13
28
  ## Features
14
29
 
15
30
  ### MCP Tools
@@ -69,4 +84,4 @@ npm publish
69
84
 
70
85
  ## License
71
86
 
72
- All work in this repos is licensed under "Creative Commons Attribution-ShareAlike 4.0 International License".
87
+ All work in this repos is licensed under "Creative Commons Attribution-ShareAlike 4.0 International License".
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brainfaq-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "MCP server for the BrainFuck programming language",
5
5
  "homepage": "https://github.com/labarilem/brainfaq-mcp#readme",
6
6
  "bugs": {
@@ -12,11 +12,16 @@
12
12
  },
13
13
  "license": "Attribution-ShareAlike 4.0 International",
14
14
  "author": "labarilem",
15
- "tags": ["MCP", "brainfuck", "debugger"],
15
+ "keywords": [
16
+ "MCP",
17
+ "brainfuck",
18
+ "debugger"
19
+ ],
20
+ "mcpName": "io.github.labarilem/brainfaq-mcp",
16
21
  "type": "module",
17
22
  "main": "index.js",
18
23
  "bin": {
19
- "brainfaq-mcp": "./index.js"
24
+ "brainfaq-mcp": "build/index.js"
20
25
  },
21
26
  "scripts": {
22
27
  "build": "tsc && cp ./LICENSE ./README.md ./package.json ./build",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "brainfaq-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "MCP server for the BrainFuck programming language",
5
5
  "homepage": "https://github.com/labarilem/brainfaq-mcp#readme",
6
6
  "bugs": {
@@ -12,11 +12,12 @@
12
12
  },
13
13
  "license": "Attribution-ShareAlike 4.0 International",
14
14
  "author": "labarilem",
15
- "tags": [
15
+ "keywords": [
16
16
  "MCP",
17
17
  "brainfuck",
18
18
  "debugger"
19
19
  ],
20
+ "mcpName": "io.github.labarilem/brainfaq-mcp",
20
21
  "type": "module",
21
22
  "main": "index.js",
22
23
  "bin": {