Skip to main content
Glama
pushpad

Pushpad MCP

Official
by pushpad

projects_create

Create a new project for web push notifications by providing a name, website URL, and sender ID. The API returns the created project's attributes.

Instructions

To create a new project, send a POST request to /projects setting the required attributes.

A project will be created using the provided information.

The response body will contain a JSON object with the attributes of your new project.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe human-readable name set for the project.
websiteYesThe URL of the project. This is also the default URL for notifications.
icon_urlNoThe default icon for notifications. Suggested size >= 192x192px, squared.
badge_urlNoA small icon displayed in the status bar for notifications. Suggested size >= 96x96px, squared.
sender_idYesThe ID of the sender associated to this project.
notifications_ttlNoDrop the notifications that cannot be delivered within this amount of time.
notifications_silentNoTurn on this option to disable the sound and vibration of notifications.
notifications_require_interactionNoTurn on this option to require user interaction and prevent browser from automatically closing the notifications after a few seconds.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoA unique identifier for each project. This is automatically generated upon project creation.
nameNoThe human-readable name set for the project.
websiteNoThe URL of the project. This is also the default URL for notifications.
icon_urlNoThe default icon for notifications. Suggested size >= 192x192px, squared.
badge_urlNoA small icon displayed in the status bar for notifications. Suggested size >= 96x96px, squared.
sender_idNoThe ID of the sender associated to this project.
created_atNoA time value given in ISO 8601 format. It represents when the project was created.
notifications_ttlNoDrop the notifications that cannot be delivered within this amount of time.
notifications_silentNoTurn on this option to disable the sound and vibration of notifications.
notifications_require_interactionNoTurn on this option to require user interaction and prevent browser from automatically closing the notifications after a few seconds.
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description must disclose behavioral traits. It confirms this is a create (write) operation. It states the response will contain a JSON object with the new project's attributes, which is helpful. However, it omits what happens if the sender_id doesn't exist, whether duplicates are prevented, or rate limiting. The description adds but does not fully carry the burden given no annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three short sentences focused on creation, endpoint, and response. It is reasonably concise and front-loaded with the key action. However, the second sentence ('A project will be created using the provided information.') is somewhat redundant with the first.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 8 parameters with full schema coverage and a stated output schema presence, the description does not need to explain return values. It mentions the JSON response structure, which is appropriate. However, it lacks context on error scenarios, default values, or parameter constraints (e.g., TTL, URI formats) that could affect agent decision-making. For a creation tool with many optional parameters and a documented output schema, this is adequate but not thorough.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, meaning each of the 8 parameters has a description in the schema. The number of parameters (8) is high, but the description itself adds no parameter-level information—it merely says 'required attributes' without listing or clarifying them. The schema descriptions are present, so the description provides little added meaning beyond what the schema already offers.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'To create a new project' using a POST request to a specific endpoint, which is a very specific verb+resource. It also names the required attributes. The sibling tools include both projects_delete, projects_update, etc., and this description effectively differentiates it as the creation tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description mentions the HTTP method and endpoint, giving some implementation context. However, it does not discuss when to use this tool versus alternatives (e.g., projects_update for modifying existing projects) or any prerequisites such as requiring a sender_id. There is no guidance on error conditions or validation rules beyond noting required attributes in the schema.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

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/pushpad/pushpad-mcp'

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