@every-app/mcp 0.0.3 → 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/dist/setup.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Get the examples directory, using environment variable or default location
2
+ * Get the examples directory
3
3
  */
4
4
  export declare function getExamplesDirectory(): string;
5
5
  /**
package/dist/setup.js CHANGED
@@ -7,10 +7,10 @@ const DEFAULT_EXAMPLES_DIR = path.join(os.homedir(), ".every-app-mcp", "examples
7
7
  // Repository info
8
8
  const REPO_URL = "https://github.com/every-app/every-app.git";
9
9
  /**
10
- * Get the examples directory, using environment variable or default location
10
+ * Get the examples directory
11
11
  */
12
12
  export function getExamplesDirectory() {
13
- return process.env.EVERY_APP_EXAMPLES_DIR || DEFAULT_EXAMPLES_DIR;
13
+ return DEFAULT_EXAMPLES_DIR;
14
14
  }
15
15
  /**
16
16
  * Check if git is available
@@ -63,7 +63,7 @@ const INTERNAL_PACKAGES = [
63
63
  },
64
64
  {
65
65
  name: "packages/cli",
66
- description: "The @every-app/cli package - command-line tool for creating and deploying Every Apps",
66
+ description: "The everyapp package - command-line tool for creating and deploying Every Apps",
67
67
  goodFor: [
68
68
  "How app creation works (templates, scaffolding)",
69
69
  "Deployment flow to Cloudflare",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@every-app/mcp",
3
- "version": "0.0.3",
3
+ "version": "0.1.0",
4
4
  "description": "MCP server for Every App coding agents",
5
5
  "type": "module",
6
6
  "bin": {