PPN Hub — public APIs over MCP
Server Details
One MCP endpoint over 69 public PPN APIs: search_apis to discover, execute_api to call. Free tier.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 3 of 3 tools scored.
The three tools are largely distinct: search_apis is for discovery, execute_api for execution, environment_brief for a specialized aggregated use-case. There is minor overlap risk since execute_api can presumably also make weather/environment calls, and environment_brief is a specialized wrapper around the same APIs, but the descriptions make the boundaries reasonably clear.
All three names follow a consistent verb_noun pattern (search_apis, execute_api, environment_brief). The naming is predictable and readable, with each denoting a clear action and target.
Three tools is on the lean side for a server that claims access to 69 APIs and 450 endpoints, but the design deliberately funnels all actual API calls through two generic tools (search + execute), which is a reasonable and compact architectural pattern. Slightly thin but defensible.
The core discovery-and-execution workflow is complete: search to find, execute to call. environment_brief covers one specialized aggregated scenario. However, there is no apparent management surface (auth, listing all APIs without searching, or aggregated multi-API queries beyond environment_brief), which leaves notable gaps for broader usage.
Available Tools
3 toolsenvironment_briefAInspect
Environmental brief for one location: fans out to every public geo-aware API (weather, terrain, environment, …) and returns a merged JSON. Partial results come back with an errors[] list. Requires 'Authorization: Bearer ppn_live_*'.
| Name | Required | Description | Default |
|---|---|---|---|
| lat | Yes | Latitude | |
| lon | Yes | Longitude | |
| place | No | Optional human-readable place label (echoed back) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description compensates by disclosing key behaviors: it fans out to multiple APIs, returns merged JSON, handles partial results with an errors[] list, and requires authorization. This is substantial transparency, though it omits details like rate limits or latency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is very concise with three sentences, each adding essential information: behavior, error handling, and authentication. No redundant or vague phrasing.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of output schema and annotations, the description covers the main functionality and error reporting, but does not describe the structure of the merged JSON output or any constraints on usage, leaving some aspects incomplete for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and descriptions in the schema already explain lat, lon, and place adequately. The tool description adds no new semantic information beyond what the schema provides, so the default score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it provides an 'Environmental brief for one location' by aggregating multiple APIs, and the name 'environment_brief' reinforces this. It distinguishes from the broader sibling tools 'execute_api' and 'search_apis' by being specialized and self-contained.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description mentions it requires a specific authorization token, but does not explicitly state when to use this tool versus alternatives, nor provides any exclusion criteria. Usage is implied for environmental data retrieval but lacks explicit guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
execute_apiAInspect
Execute a request against any of the 69 registered APIs. Use search_apis first to find the correct api name and operationId. Requires 'Authorization: Bearer ppn_live_*'.
| Name | Required | Description | Default |
|---|---|---|---|
| api | Yes | API name: artia, marketo, atmos, chronomap, hydros, lithos, terra, carbon-credit, cost-compare, demand-forecast, grid-connect, site-matching, storage-optimize, tariff-optimize, transmission-loss, carbonias, planetary, green-path-api, biomassia, gasturbia, geothermia, hydria, reactoria, renewio, solaria, windaria-api, hydrogen, sla-viewer-production, nanobase-api, nanobase-console, nanosnap-console, nanosnap-gacha-production, nanosnap-inventory-production, nanosnap-leaderboard-production, nanosnap-mailbox-production, nanosnap-persona-gateway-production, nanosnap-presence-production, nanosnap-replay-production, nanosnap-room-production, nanosnap-save-data-production, nanosnap-spatial-message-production, nanosnap-world-counter-production, nanosnap-world-objects-production, biositia, biota, cryonia, faunaunify, insectunify, literatia, plantunify, ppn-hub-workers, onokoro, sakurahub-address, sakurahub-gateway, sakurahub-web, weathio, biolexia-production, science-climate, science-ecology, science-geology, biocolo, nishinoshima-gateway-production, crime, disease, noise, traffic, celestora, orbitalio, perks | |
| body | No | Request body for POST/PUT/PATCH | |
| params | No | Query and path parameters as key-value pairs | |
| operationId | Yes | operationId from search_apis results |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only discloses an authentication requirement ('Authorization: Bearer ppn_live_*'). It does not disclose whether the tool is read-only or destructive, nor any rate limits, idempotency, or side effects. For a generic API executor that could perform mutations, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the purpose, and includes a critical prerequisite in the second sentence. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema and no annotations, the description is moderately complete. It covers the prerequisite and auth, but lacks explanation of return values (response body, status codes) and potential destructive nature. For a tool with 4 parameters and nested objects, it stays minimal.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds minimal extra meaning beyond the schema: it relates 'api' and 'operationId' to the prerequisite search step. It does not explain 'body' or 'params' further, but the schema already provides adequate descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool executes a request against any of the 69 registered APIs, using a specific verb and resource. It distinguishes from the sibling tool 'search_apis' by directing users to use it first.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance to use 'search_apis' first to find the correct api name and operationId, establishing a clear prerequisite. It does not explicitly state when not to use the tool, but the context implies it should only be used after identifying the API.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_apisAInspect
Search across 450 endpoints in 69 APIs (cultural, earth, energy-calc, green-path, harmonias, hydrogen, internal, nanosnap, natura, platform, sakurahub, science, sim, social, space, stocks). Returns matching endpoints with method, path, summary, parameters, and a ready-to-run example. Use this to discover available API endpoints before calling execute_api. Results carry a "coverage" field (e.g. ["JP"]) for region-limited APIs; use the "region" filter to narrow.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Filter by OpenAPI tag | |
| limit | No | Max results (default: 20) | |
| query | Yes | Search term (matches operationId, summary, description, path, API name, tags; synonyms expanded) | |
| domain | No | Filter by domain: cultural, earth, energy-calc, green-path, harmonias, hydrogen, internal, nanosnap, natura, platform, sakurahub, science, sim, social, space, stocks | |
| method | No | Filter by HTTP method | |
| region | No | Filter by ISO 3166-1 alpha-2 region the API serves data for (e.g. "JP"). Returns region-specific + global APIs; excludes APIs limited to other regions. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses behavioral traits beyond the schema: results carry a coverage field for region-limited APIs, region filter behavior (returns region-specific + global APIs, excludes other regions). This adds meaningful behavioral context. A small deduction because it doesn't disclose pagination behavior or output size limits beyond the limit param.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with the core purpose and scope. The first sentence packs important info (450 endpoints, 69 APIs, return fields) efficiently. Second sentence adds practical usage guidance. Slightly dense but no wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is complex (6 params, 450 endpoints, discovery purpose) but the description covers the core use case, return content, region-specific behavior, and relationship to execute_api. No output schema means the description's note about 'returns matching endpoints with method, path, summary, parameters, and a ready-to-run example' compensates well. Minor gaps: no pagination or default ordering guidance, but adequate for a discovery tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all 6 parameters are well-documented in the schema itself. The description adds marginal value by explaining the coverage field relationship to the region filter and listing domains/APIs in prose, but these largely overlap with schema descriptions for the individual params.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clear verb+resource: 'Search across 450 endpoints in 69 APIs.' It states what it returns (matching endpoints with method, path, summary, parameters, ready-to-run example) and its role as a discovery tool. It also distinguishes from siblings by explicitly calling out use before executing execute_api.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use this tool: 'Use this to discover available API endpoints before calling execute_api.' This directly addresses the when-not/alternative distinction relative to the execute_api sibling. Additional context about the coverage field and region filter provides clear usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityAmaintenanceMCP server for searching and discovering 4,000+ public APIs3MIT
- Alicense-qualityAmaintenance62 real-time data tools for AI agents via MCP. Finance, crypto, FMCSA, sanctions, courts, weather, vehicles, cybersecurity. One bearer token, one bill. Free tier available.MIT
- Alicense-qualityBmaintenanceProvides a single MCP endpoint for 90+ tools across 42 backend servers (search, legal, domain, etc.) with per-call credit billing and a single API key.1MIT
- AlicenseAqualityBmaintenanceMCP server for discovering and calling 400+ practical APIs through six compact tools, with free catalog search and pay-per-call x402 execution on Base.635MIT