npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@forestadmin/mcp-server

v1.11.9

Published

Model Context Protocol server for Forest Admin with OAuth authentication

Readme

@forestadmin/mcp-server

Model Context Protocol (MCP) server for Forest Admin with OAuth authentication support.

Overview

This MCP server provides HTTP REST API access to Forest Admin operations, enabling AI assistants and other MCP clients to interact with your Forest Admin data through a standardized protocol.

Available Tools

| Tool | Description | |------|-------------| | describeCollection | Get the schema of a collection (fields, types, relations) | | list | Retrieve records from a collection | | listRelated | Retrieve related records | | create | Create a new record | | update | Update an existing record | | delete | Delete records | | associate | Associate records in a relation | | dissociate | Dissociate records from a relation | | getActionForm | Get the form fields for a custom action | | executeAction | Execute a custom action |

Usage

With Forest Admin Agent

The MCP server is included with the Forest Admin agent. Simply call mountAiMcpServer():

import { createAgent } from '@forestadmin/agent';

const agent = createAgent(options)
  .addDataSource(myDataSource)
  .mountAiMcpServer();

agent.mountOnExpress(app);
agent.start();

The MCP server will be automatically initialized and mounted on your application.

Standalone Server

You can run the MCP server standalone using the CLI:

npx forest-mcp-server

Or from the package directory:

yarn start           # Production
yarn start:dev       # Development (loads .env file automatically)

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | FOREST_ENV_SECRET | Yes | - | Your Forest Admin environment secret | | FOREST_AUTH_SECRET | Yes | - | Your Forest Admin authentication secret (must match your agent) | | MCP_SERVER_PORT | No | 3931 | Port for the HTTP server | | FOREST_MCP_ENABLED_TOOLS | No | - | Comma-separated list of tools to enable (allowlist) |

Example Configuration

Create a .env file in the package directory:

FOREST_ENV_SECRET="your-env-secret"
FOREST_AUTH_SECRET="your-auth-secret"

Then run:

yarn start:dev

Or set the variables inline:

FOREST_ENV_SECRET="your-env-secret" FOREST_AUTH_SECRET="your-auth-secret" npx forest-mcp-server

Restrict Tools

You can restrict which tools the MCP server exposes using enabledTools. Only the listed tools will be available. New tools added in future releases will NOT be automatically enabled — you must explicitly add them.

For example, to set up a read-only mode where the AI assistant can only browse data (no create, update, delete or action execution):

// With Forest Admin Agent — read-only example
agent.mountAiMcpServer({
  enabledTools: ['describeCollection', 'list', 'listRelated'],
});
# Standalone
export FOREST_MCP_ENABLED_TOOLS="describeCollection,list,listRelated"
npx forest-mcp-server

When enabledTools is not set, all tools are enabled by default.

See Available Tools for the full list. describeCollection is always enabled as it is required for the MCP server to function properly.

API Endpoints

Once running, the MCP server exposes the following endpoints:

| Method | Path | Description | |--------|------|-------------| | POST | /mcp | Main MCP protocol endpoint (requires Bearer token) | | POST | /oauth/authorize | OAuth 2.0 authorization | | POST | /oauth/token | OAuth 2.0 token exchange | | GET | /.well-known/oauth-protected-resource/mcp | OAuth metadata discovery |

The /mcp endpoint expects MCP protocol messages (JSON-RPC 2.0) and requires a valid OAuth Bearer token with at least the mcp:read scope.

Features

  • HTTP Transport: Uses streamable HTTP transport for MCP communication
  • OAuth Authentication: Built-in OAuth 2.0 with scopes (mcp:read, mcp:write, mcp:action, mcp:admin)
  • CORS Enabled: Allows cross-origin requests
  • Express-based: Built on top of Express.js for reliability and extensibility

Development

Building

yarn build

Watch Mode

yarn build:watch

Linting

yarn lint

Testing

yarn test

Cleaning

yarn clean

Internal Environment Variables

These are only needed by Forest Admin developers (e.g. to point to a local or staging server):

| Variable | Default | Description | |----------|---------|-------------| | FOREST_SERVER_URL | https://api.forestadmin.com | Forest Admin API URL | | FOREST_APP_URL | https://app.forestadmin.com | Forest Admin application URL |

Architecture

The server consists of:

  • ForestMCPServer: Main server class managing the MCP server lifecycle
  • McpServer: Core MCP protocol implementation
  • StreamableHTTPServerTransport: HTTP transport layer for MCP
  • Express App: HTTP server handling incoming requests

License

GPL-3.0

Repository

https://github.com/ForestAdmin/agent-nodejs

Support

For issues and feature requests, please visit the GitHub repository.