codify-mcp 0.7.0 → 1.0.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/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
  Complete end-to-end browser automation pipeline running inside browser (or locally). Codify and replay browser actions as robust (deterministic) and reusable scripts.
9
9
  From rapid prototyping and quick automation scripts to sophisticated deployments at scale.
10
10
 
11
- - [Login](https://apify.com/cyberfly) - reusable authentication sessions - reusable secure login (TBD) ☑️
11
+ - [Login](https://apify.com/cyberfly) - reusable authentication sessions - reusable secure login (TBD)
12
12
 
13
13
  - [Agent](https://apify.com/cyberfly) - turn scripts into browser actions - code or text script (future) ✅
14
14
  - [Coder](https://apify.com/cyberfly) - turn browser actions into scripts (TBD - currently integrated) ✅
package/manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "manifest_version": "0.2",
3
- "version": "0.1.0",
3
+ "version": "1.0.0",
4
4
  "name": "codify-mcp",
5
5
  "icon": "media/icons/play.png",
6
6
  "display_name": "Codify MCP Server",
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "codify-mcp",
3
- "version": "0.7.0",
3
+ "mcpName": "io.github.cybairfly/codify-mcp",
4
+ "version": "1.0.0",
4
5
  "description": "MCP server for custom automation tools using Apify Agent. Easily create reusable automations from casual browser actions.",
5
6
  "main": "lib/index.js",
6
7
  "bin": {
package/server.json CHANGED
@@ -1,24 +1,29 @@
1
1
  {
2
- "$schema": "https://raw.githubusercontent.com/modelcontextprotocol/modelcontextprotocol/main/schema/2025-11-25/schema.json",
3
- "name": "com.apify/codify-mcp",
4
- "version": "0.1.0",
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.cybairfly/codify-mcp",
5
4
  "description": "Easily create reusable automation tools from casual browser actions using Apify Agent",
6
- "transport": {
7
- "type": "stdio",
8
- "command": "codify-mcp",
9
- "args": []
5
+ "repository": {
6
+ "url": "https://github.com/cybairfly/codify-mcp",
7
+ "source": "github"
10
8
  },
11
- "authentication": {
12
- "type": "environment",
13
- "env_var": "APIFY_TOKEN"
14
- },
15
- "capabilities": {
16
- "tools": true,
17
- "prompts": false,
18
- "resources": false
19
- },
20
- "implementation": {
21
- "name": "Codify MCP Server",
22
- "version": "0.1.0"
23
- }
24
- }
9
+ "version": "1.0.0",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "codify-mcp",
14
+ "version": "1.0.0",
15
+ "transport": {
16
+ "type": "stdio"
17
+ },
18
+ "environmentVariables": [
19
+ {
20
+ "description": "Your API key for the service",
21
+ "isRequired": true,
22
+ "isSecret": true,
23
+ "format": "string",
24
+ "name": "YOUR_API_KEY"
25
+ }
26
+ ]
27
+ }
28
+ ]
29
+ }