MCP server intelligence profile

faker-server MCP Server

Provides tools for generating fake data using Faker.js, including person, lorem, internet, and more, with support for multiple locales and customizable options

Local Onlydata-mindset
Awaiting current scanNpm · 1.0.3

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
4Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install faker-mcp-server from npm

Version 1.0.3 declares 1 executable entrypoint.

npm install --save-exact faker-mcp-server@1.0.3
npx -y -p faker-mcp-server@1.0.3 faker-mcp-server
MCP client configuration example
{
  "mcpServers": {
    "faker-mcp-server": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "faker-mcp-server@1.0.3",
        "faker-mcp-server"
      ]
    }
  }
}

Identity

Canonical slugfaker-server-377465c0DeploymentLocal Only
Canonical packagenpm:faker-mcp-serverRepositorydata-mindset/faker-mcp-server-docker
First publishedLatest release
Last security verificationClassification confidence90%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmfaker-mcp-server1.0.31Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmfaker-mcp-server1.0.3CurrentSep 5, 20264 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2024-11-05Negotiated protocol
faker-mcp-serverServer-reported name
1Capability groups
Aug 18, 2026Observed

Tools 4

ToolCategoryAnnotationsRisk
generate-companyGenerates fake company data including names, industries, contact information, and addresses
Input schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "minimum": 1,
      "maximum": 10000,
      "default": 1,
      "description": "Number of company records to generate"
    },
    "locale": {
      "type": "string",
      "enum": [
        "en",
        "fr",
        "de",
        "es",
        "ja"
      ],
      "default": "en",
      "description": "Locale for generated data"
    },
    "seed": {
      "type": "number",
      "description": "Optional seed for reproducible generation"
    },
    "includeAddress": {
      "type": "boolean",
      "default": true,
      "description": "Whether to include address information"
    },
    "includeWebsite": {
      "type": "boolean",
      "default": true,
      "description": "Whether to include website URL"
    },
    "includePhone": {
      "type": "boolean",
      "default": true,
      "description": "Whether to include phone number"
    },
    "includeFoundedYear": {
      "type": "boolean",
      "default": false,
      "description": "Whether to include founded year"
    },
    "includeEmployeeCount": {
      "type": "boolean",
      "default": false,
      "description": "Whether to include employee count"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
generate-customGenerates fake data following custom patterns, including regex patterns, enums, formats, and ranges
Input schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "minimum": 1,
      "maximum": 10000,
      "default": 1,
      "description": "Number of records to generate"
    },
    "patterns": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "enum": [
              "regex",
              "enum",
              "format",
              "range"
            ],
            "description": "Pattern type"
          },
          "value": {
            "anyOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              {
                "type": "object",
                "properties": {
                  "min": {
                    "type": "number",
                    "description": "Minimum value"
                  },
                  "max": {
                    "type": "number",
                    "description": "Maximum value"
                  },
                  "precision": {
                    "type": "number",
                    "description": "Decimal precision (0 for integers)"
                  }
                },
                "required": [
                  "min",
                  "max"
                ],
                "additionalProperties": false
              }
            ],
            "description": "Pattern value (type depends on pattern type)"
          }
        },
        "required": [
          "type",
          "value"
        ],
        "additionalProperties": false
      },
      "description": "Map of field names to pattern definitions"
    },
    "locale": {
      "type": "string",
      "enum": [
        "en",
        "fr",
        "de",
        "es",
        "ja"
      ],
      "default": "en",
      "description": "Locale for generated data (affects format-based patterns)"
    },
    "seed": {
      "type": "number",
      "description": "Optional seed for reproducible generation"
    }
  },
  "required": [
    "patterns"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
generate-datasetGenerate a structured dataset with multiple related entities and referential integrity. Supports person, company, and custom entity types with one-to-many and many-to-many relationships. Perfect for creating test databases, mock APIs, and complex data scenarios.
Input schema
{
  "type": "object",
  "properties": {
    "schema": {
      "type": "object",
      "properties": {
        "entities": {
          "type": "object",
          "additionalProperties": {
            "type": "object",
            "properties": {
              "count": {
                "type": "integer",
                "minimum": 1,
                "maximum": 10000
              },
              "type": {
                "type": "string",
                "enum": [
                  "person",
                  "company",
                  "custom"
                ]
              },
              "fields": {
                "type": "array",
                "items": {
                  "type": "string"
                }
              },
              "relationships": {
                "type": "object",
                "additionalProperties": {
                  "type": "object",
                  "properties": {
                    "references": {
                      "type": "string",
                      "minLength": 1
                    },
                    "type": {
                      "type": "string",
                      "enum": [
                        "one-to-many",
                        "many-to-many"
                      ]
                    },
                    "nullable": {
                      "type": "boolean"
                    }
                  },
                  "required": [
                    "references",
                    "type"
                  ],
                  "additionalProperties": false
                }
              }
            },
            "required": [
              "count",
              "type"
            ],
            "additionalProperties": false
          }
        }
      },
      "required": [
        "entities"
      ],
      "additionalProperties": false
    },
    "seed": {
      "type": "integer"
    },
    "locale": {
      "type": "string",
      "enum": [
        "en",
        "fr",
        "de",
        "es",
        "ja"
      ],
      "default": "en"
    }
  },
  "required": [
    "schema"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
generate-personGenerates fake person data including names, emails, phone numbers, and addresses
Input schema
{
  "type": "object",
  "properties": {
    "count": {
      "type": "number",
      "minimum": 1,
      "maximum": 10000,
      "default": 1,
      "description": "Number of person records to generate"
    },
    "locale": {
      "type": "string",
      "enum": [
        "en",
        "fr",
        "de",
        "es",
        "ja"
      ],
      "default": "en",
      "description": "Locale for generated data"
    },
    "seed": {
      "type": "number",
      "description": "Optional seed for reproducible generation"
    },
    "includeAddress": {
      "type": "boolean",
      "default": true,
      "description": "Whether to include address information"
    },
    "includePhone": {
      "type": "boolean",
      "default": true,
      "description": "Whether to include phone number"
    },
    "includeDateOfBirth": {
      "type": "boolean",
      "default": false,
      "description": "Whether to include date of birth"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

faker-server MCP Server questions

How do I install faker-server MCP Server?

Install the selected package version with: npm install --save-exact faker-mcp-server@1.0.3

What tools does faker-server MCP Server provide?

faker-server MCP Server exposed 4 tools during independent protocol observation, including generate-company, generate-custom, generate-dataset, generate-person.

Is faker-server MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Company and product intelligence

These internal links are derived from strong identity fields such as the implementation name, package, repository, vendor, and listing name—not generic description prose.

Associated company landscape

Docker intelligence →

Association is based on retained identity fields; it does not by itself prove first-party publication.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.