Skip to main content
Glama
sn0bored

Permissioned MCP Server

by sn0bored

Permissioned MCP Server

CI

A compact Model Context Protocol server that demonstrates the parts usually missing from quickstarts: explicit tool boundaries, least-privilege discovery, execution-time authorization, destructive-action confirmation, and metadata-only audit logs.

The domain is deliberately boring: a local note store. The reference is about designing a safe boundary between an AI agent and real side effects.

What it demonstrates

  • JavaScript on Node.js with the official MCP SDK v2

  • Narrow read, write, and destructive tools

  • Separate notes:read, notes:write, and notes:admin scopes

  • Unauthorized tools omitted from tools/list and rejected again at execution

  • Identifier-bound confirmation for destructive actions

  • Structured tool results and MCP behavior annotations

  • Audit events that never log arguments, content, or credentials

  • Atomic local persistence with restrictive file permissions

  • Tests for policy, handlers, persistence, and failure cases

Related MCP server: mcp-shell-server-example

Run it

Requires Node.js twenty or newer.

npm install
cp .env.example .env
MCP_SCOPES=notes:read,notes:write npm start

Example client configuration:

{
  "mcpServers": {
    "permissioned-notes": {
      "command": "node",
      "args": ["/absolute/path/to/permissioned-mcp-server/src/server.js"],
      "env": {
        "MCP_SCOPES": "notes:read,notes:write",
        "MCP_DATA_FILE": "/absolute/path/to/notes.json",
        "MCP_ACTOR": "local-agent"
      }
    }
  }
}

Start read-only. Grant notes:write only when mutation is necessary. Keep notes:admin out of the default configuration.

Tool boundary

Tool

Scope

Side effect

notes.list

notes:read

Returns metadata only

notes.get

notes:read

Reads one note

notes.create

notes:write

Creates one note

notes.delete

notes:admin

Permanently deletes one note

See the decision record for the reasoning behind discovery filtering, double authorization, confirmation design, audit redaction, transport choice, and storage isolation.

Verify it

npm run check
npm test

The test suite never starts a model or calls a paid API.

Production notes

This is a local stdio reference, not a turnkey hosted authorization server. Before exposing an MCP server over Streamable HTTP, add OAuth-based authorization, token audience validation, HTTPS, rate limits, tenant isolation, durable audit storage, and client-specific consent.

License

MIT

Install Server
A
license - permissive license
A
quality
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sn0bored/permissioned-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server