Tools Reference¶
Complete reference for tools provided by the mcp-notify-mcp server.
search_servers¶
Search for MCP servers by name or description.
Parameters¶
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | ✅ | Search query (name or description) |
limit | integer | ❌ | Maximum results (default: 10) |
Example¶
Response¶
JSON
{
"servers": [
{
"name": "postgres",
"description": "PostgreSQL database integration",
"version": "1.0.0",
"repository_url": "https://github.com/..."
}
],
"total": 5
}
get_server¶
Get detailed information about a specific MCP server.
Parameters¶
| Parameter | Type | Required | Description |
|---|---|---|---|
name | string | ✅ | Server name |
Example¶
Response¶
JSON
{
"name": "filesystem",
"description": "Basic file system operations",
"version": "1.2.0",
"repository": {
"url": "https://github.com/modelcontextprotocol/servers",
"stars": 1234,
"forks": 56
},
"license": "MIT",
"links": {
"homepage": "https://...",
"documentation": "https://..."
}
}
list_servers¶
List all servers in the MCP Registry.
Parameters¶
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | integer | ❌ | Maximum results (default: 50) |
offset | integer | ❌ | Pagination offset (default: 0) |
Example¶
Response¶
get_stats¶
Get MCP Registry statistics.
Parameters¶
None.