Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

A Model Context Protocol (MCP) server that provides tools for interacting with simple's data, including customer reports, calendar events, and company information.

README.md

Simple MCP Server

A Model Context Protocol (MCP) server that provides tools for interacting with simple's data, including customer reports, calendar events, and company information.

Prerequisites

  • Node.js (v18 or higher)
  • Yarn package manager
  • PostgreSQL database (for database-related tools)
  • Access to the required environment variables

Installation

  1. Clone the repository and navigate to the project directory:
   cd simple-mcp
  1. Install dependencies:
   yarn install
  1. Set up environment variables:

Create a .env file in the root directory based on .env.example: ``bash cp .env.example .env ``

Configure the following environment variables in your .env file: ``env DB_HOST=localhost DB_PORT=5432 DB_NAME=postgres DB_USER=postgres DB_PASSWORD=your_password ``

Building the Project

Build the TypeScript project: ``bash yarn build ``

This will:

  • Compile TypeScript files to JavaScript in the build/ directory
  • Make the entry point executable

Running the MCP Server

Development

To run the server directly (for testing): ``bash node build/index.js ``

The server runs on stdio (standard input/output) and communicates via the MCP protocol.

Using with Cursor

To use this MCP server with Cursor, add it to your Cursor settings:

  1. Open Cursor Settings
  2. Navigate to MCP Servers configuration
  3. Add the following configuration:
{
  "mcpServers": {
    "simple-mcp": {
      "command": "node",
      "args": ["/absolute/path/to/simple-mcp/build/index.js"],
      "env": {
        "DB_HOST": "localhost",
        "DB_PORT": "5432",
        "DB_NAME": "postgres",
        "DB_USER": "postgres",
        "DB_PASSWORD": "your_password"
      }
    }
  }
}

Replace /absolute/path/to/simple-mcp with the actual absolute path to this project directory.

Using with Other MCP Clients

The server communicates via stdio using the MCP protocol. Any MCP-compatible client can connect to it by running: ``bash node build/index.js ``

Available Tools

The server provides the following tools:

  • getName: Get a name
  • getCustomersReport: Get a customers report
  • listCalendarEvents: List all calendar events
  • fetchCompaniesData: Query PostgreSQL database to fetch all companies data from the companies table

Project Structure

simple-mcp/
├── src/
│   ├── index.ts          # Main entry point
│   ├── server.ts         # MCP server setup
│   ├── tools/            # Tool implementations
│   └── utils/            # Utility functions (database, data generators)
├── build/                # Compiled JavaScript output
├── package.json
├── tsconfig.json
└── README.md

Development

  • Source files are in src/
  • Compiled output goes to build/
  • Run yarn build after making changes to TypeScript files

Troubleshooting

  • Database connection errors: Ensure PostgreSQL is running and the connection details in .env are correct
  • Build errors: Make sure all dependencies are installed with yarn install
  • Permission errors: The build script sets executable permissions, but if issues persist, run chmod +x build/index.js

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Productivity servers.