Pinpole MCP Server
Generates Terraform configuration from cloud architecture graphs for infrastructure provisioning.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Pinpole MCP ServerDesign a scalable web app on AWS with a load balancer, auto-scaling EC2, and RDS, then simulate the monthly cost."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Pinpole MCP Server
Design cloud architectures, run cost/performance simulations, and draw them on your Pinpole canvas — from Cursor, Claude Code, Codex, Claude.ai, and Bolt.
Product: https://pinpole.cloud · App: https://app.pinpole.cloud · Connectors: docs/connectors.md
Quick start (stdio — Cursor, Claude Code, Codex)
1. Get a token
Open Pinpole → Settings → Developer / MCP and create a personal access token
(pp_live_…). Copy it — it's shown only once.
2. Configure your agent
Cursor — add to ~/.cursor/mcp.json:
{
"mcpServers": {
"pinpole": {
"command": "npx",
"args": ["-y", "@pinpole/mcp"],
"env": {
"PINPOLE_API_TOKEN": "pp_live_…",
"PINPOLE_BASE_URL": "https://app.pinpole.cloud"
}
}
}
}Claude Code:
claude mcp add pinpole \
--env PINPOLE_API_TOKEN=pp_live_… \
--env PINPOLE_BASE_URL=https://app.pinpole.cloud \
-- npx -y @pinpole/mcpCodex — add to ~/.codex/config.toml:
[mcp_servers.pinpole]
command = "npx"
args = ["-y", "@pinpole/mcp"]
env = { PINPOLE_API_TOKEN = "pp_live_…", PINPOLE_BASE_URL = "https://app.pinpole.cloud" }Related MCP server: CloudForge MCP Server
Remote connector (Claude Desktop, Claude.ai, Bolt)
Field | Value |
URL |
|
Transport | HTTP |
Auth | OAuth (Claude) or API key |
Claude Desktop: Settings → Connectors → Add custom connector → URL above (leave OAuth Client ID/Secret blank). See docs/connectors.md.
OAuth discovery: https://app.pinpole.cloud/.well-known/oauth-authorization-server
Self-hosted HTTP server:
npm run build && npm run start:httpEnv: MCP_HOST, MCP_PORT (default 3333), PINPOLE_BASE_URL.
Embed in your Node app:
import { createMcpApp } from "@pinpole/mcp/http";
const app = createMcpApp();
app.listen(3333);Tools
66 MCP tools covering projects, workspaces, AI architect, simulation, deploy, templates, teams, connectors, billing, and export. Full API parity matrix: docs/PARITY.md.
Highlights:
Tool | What it does |
| Prompt → architecture → inline canvas in chat (+ optional simulation) |
| Multi-turn AI architect |
| Cost/latency simulation |
| Project & canvas management |
| Inline read-only canvas embed (PAT) + links to full editor |
Canvas in Cursor
With PINPOLE_API_TOKEN set, canvas tools mint a short-lived /embed/canvas URL and return
an inline read-only diagram in chat (no Pinpole browser login). Use
Open interactive canvas in Pinpole for full drag-and-drop editing.
See docs/connectors.md.
| pinpole_deploy_execute / pinpole_get_drift | Deploy & drift |
| pinpole_export_terraform | Offline Terraform export (no network) |
Environment variables
Variable | Default | Notes |
| – |
|
|
| API base URL |
| – | Local dev only ( |
Development
npm ci
npm run build
npm testnpm test # smoke: tools/list
npm run test:tools # list all registered tools
npm run test:parity # compare tools against docs/PARITY.mdLocal integration testing (no browser UI): see docs/LOCAL_TESTING.md.
Links
Pinpole — https://pinpole.cloud
Connector setup — docs/connectors.md
MIT licensed.
Available Tools
9 toolspinpole_build_architectureBuild architecture (design + draw on canvas)A
Turn a natural-language system description into a validated cloud architecture and draw it on the user's Pinpole canvas. Returns a canvas URL the user can open to see and edit the live ReactFlow diagram (a draw.io replacement). Optionally runs a cost simulation. Use this when the user wants to design or visualize a system/architecture.
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | What to build, e.g. 'a serverless image upload pipeline with thumbnailing' | |
| title | No | Title for the new project/workspace | |
| projectId | No | Draw into an existing project instead of creating one | |
| workspaceId | No | Draw into an existing workspace instead of creating one | |
| simulate | No | If provided, also run a cost simulation |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully bears the transparency burden. It states that it returns a canvas URL and optionally runs a cost simulation. However, it does not disclose details about validation, potential destructive actions, auth requirements, or rate limits. This is adequate but not thorough.
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?
Three sentences: the first states the core action, the second adds return value, the third adds optional cost simulation and usage guidance. No wasted words, and the most important information is front-loaded.
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 moderate complexity (5 parameters, nested objects, 1 required) and no output schema, the description is mostly complete. It explains the return (canvas URL) and optional cost simulation. It could mention that the prompt must be a system description, but schema already covers that. Slight gap in explaining validation.
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 all parameters have descriptions. The description adds 'Optionally runs a cost simulation' which reinforces the simulate parameter but doesn't add new meaning beyond the schema. Baseline 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 turns a natural-language system description into a validated cloud architecture and draws it on the canvas, specifying both the verb (build/draw) and the resource (architecture on canvas). It distinguishes from siblings like pinpole_create_architecture which may not draw, and pinpole_draw_on_canvas which may not create.
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 says 'Use this when the user wants to design or visualize a system/architecture.' This provides clear context. While it does not explicitly exclude other tools or list alternatives, the sibling context implies differentiation, and the guidance is direct.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pinpole_create_architectureCreate architecture graph from a promptA
Generate a validated {nodes, edges} cloud architecture from a description using Pinpole's AWS Well-Architected model. Does NOT draw it — pass the result to pinpole_draw_on_canvas or pinpole_simulate_cost. Use pinpole_build_architecture to do both in one step.
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | ||
| existingNodes | No | Existing canvas nodes to extend around |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries the burden. It indicates the output is validated and uses the AWS Well-Architected model. It does not mention idempotency or side effects but given generation context, it's sufficiently transparent. Could mention if it modifies state.
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?
Three sentences, front-loaded with the main action, then exclusions and alternatives. Every sentence earns its place; no fluff.
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?
Provides clear guidance on what the tool produces (nodes, edges), what it doesn't do, and where to go next. With only 2 parameters and no output schema, this is complete enough for correct agent invocation.
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 50% (existingNodes has description, prompt does not). The description mentions 'from a description' for prompt but doesn't add format or constraints. ExistingNodes is explained in schema. Description adds marginal value beyond schema.
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?
Clearly states it generates a validated {nodes, edges} cloud architecture from a description using Pinpole's AWS Well-Architected model. Distinguishes from siblings by noting it does not draw and provides references to drawing and simulation tools.
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 tells when not to use (does NOT draw) and directs to alternative tools: pass result to pinpole_draw_on_canvas or pinpole_simulate_cost, or use pinpole_build_architecture for combined step.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pinpole_create_projectCreate a Pinpole projectC
Create a new Pinpole project to hold architecture workspaces.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | ||
| description | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description must disclose behaviors. It only states creation without mentioning side effects, permissions, idempotency, or error conditions.
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 short and front-loaded, with no wasted words. However, it could be slightly expanded to improve completeness without losing conciseness.
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 simple parameters and sibling context, the description is minimally adequate but lacks info on return values or idempotency, which would be helpful without an output schema.
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 0%, and the description adds no information beyond parameter names (title, description). No explanation of constraints or usage for parameters.
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 verb 'create' and resource 'new Pinpole project' with a brief purpose 'to hold architecture workspaces', distinguishing it from sibling tools like pinpole_create_architecture.
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?
No guidance on when to use this tool versus alternatives like pinpole_list_projects or pinpole_create_architecture. The description does not mention prerequisites or context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pinpole_draw_on_canvasDraw nodes + connections on the Pinpole canvasA
Persist an architecture graph to the user's Pinpole canvas (ReactFlow), creating a project and workspace if none is given. Returns the canvas URL to open the live diagram. Nodes are auto-laid-out left-to-right when positions are omitted.
| Name | Required | Description | Default |
|---|---|---|---|
| graph | Yes | ||
| title | No | ||
| projectId | No | ||
| workspaceId | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description effectively discloses key behavioral traits: it creates project/workspace if missing, returns a canvas URL, and auto-layouts nodes left-to-right when positions are omitted. It does not mention authentication or destructive behaviors, but the provided info is sufficient for safe invocation.
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 three sentences long, front-loading the main action, then mentioning the return value, and finally an important behavioral detail. Every sentence adds value without redundancy.
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 tool's complexity (4 parameters, nested objects, no output schema), the description adequately explains the input graph structure, side effects (creating project/workspace), auto-layout behavior, and the return URL. It provides enough context for an agent to understand the tool's purpose and usage.
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 0%, so the description must compensate. It explains the overall graph structure, auto-layout behavior, and optional project/workspace IDs, but does not detail individual parameters like node properties or edge fields beyond what the schema names imply. This adds some meaning but not a comprehensive explanation.
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 persists an architecture graph to the Pinpole canvas, distinguishing it from siblings like pinpole_build_architecture or pinpole_create_architecture which likely handle other aspects of architecture management.
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 indicates when to use this tool (to persist a graph to canvas) and mentions auto-creation of project/workspace if not provided, providing clear context. However, it does not explicitly mention when not to use it or suggest alternative tools, such as pinpole_create_architecture, which might be more appropriate for initial architecture creation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pinpole_export_terraformExport Terraform from an architectureC
Generate Terraform project files from an architecture graph. Works offline.
| Name | Required | Description | Default |
|---|---|---|---|
| graph | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully convey behavioral traits. However, it only states that the tool generates files and works offline. It omits critical details such as authentication requirements, whether existing files are overwritten, the output format, or any side effects. This leaves the agent with significant uncertainty about the tool's behavior.
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 concise (two short sentences), but it sacrifices completeness for brevity. It front-loads the core purpose but omits necessary details, making it insufficiently informative for a tool with a complex input schema.
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 complexity of the input schema (nested object with required fields) and the lack of an output schema, the description is incomplete. It fails to explain how to structure the architecture graph, what the output (Terraform files) entails, or any side effects. The agent cannot fully understand how to invoke the tool correctly without additional context.
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?
The description provides no explanation of the single parameter ('graph'), which has a complex nested schema. With 0% schema description coverage, the description should elaborate on how to structure the architecture graph, but it only vaguely references 'from an architecture graph' without any specifics about node/edge properties, required fields, or examples.
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's purpose: generating Terraform project files from an architecture graph. It uses specific verbs ('Generate') and resource ('Terraform project files'), and the offline note distinguishes it from tools that may require network access. This effectively separates it from sibling tools like pinpole_build_architecture or pinpole_simulate_cost.
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 minimal usage guidance. It mentions 'Works offline' but does not specify when to use this tool versus alternatives, nor does it list prerequisites or exclusions. The agent is left to infer usage context from the tool name and siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pinpole_list_projectsList Pinpole projectsA
List the authenticated user's Pinpole projects (id + title).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries full burden. It clearly states the operation is read-only (list) and specifies the output fields (id, title). No side effects or destructive behavior is implied. Could mention if data is paginated or ordered, but not required for basic transparency.
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?
One sentence of 12 words, front-loaded with the action verb 'List'. No filler or redundant information. Every word earns its place.
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 tool's simplicity (0 params, no output schema, no nested objects), the description provides all necessary context: what the tool does, for whom, and what it returns. No further information is needed for correct invocation.
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?
The tool has zero parameters, and the schema coverage is 100% (empty object). The description adds nothing about parameters, but none are needed. Baseline for 0 params is 4.
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 action (list), the resource (projects), and the scope (authenticated user's). It specifies the returned fields (id + title), effectively distinguishing it from creation or other tools. No ambiguity.
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 implicitly suggests use when needing a list of the user's projects, but it provides no explicit guidance on when to choose this tool over others, nor any context about prerequisites or alternatives. For a simple list, this is acceptable but not thorough.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pinpole_list_servicesList available AWS service specsA
List AWS service ids/specs the canvas understands. Reads local repo specs when available.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description bears full burden. It mentions reading local repo specs when available, but does not disclose whether the operation is read-only, any side effects, authentication, or rate limits.
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, no wasted words, front-loaded with primary purpose. Every sentence earns its place.
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?
For a simple list tool with no output schema, the description covers purpose and data source. However, it could specify output format or prerequisites for completeness.
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?
There are zero parameters, so baseline is 4. The description adds value by explaining the content and source behavior, which compensates for the lack of parameters.
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 that the tool lists AWS service ids/specs understood by the canvas, with specific verb 'List' and resource 'AWS service ids/specs'. It is distinct from sibling tools like pinpole_list_projects.
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 implicitly indicates this tool is for retrieving service specs, but does not explicitly state when to use it versus alternatives like pinpole_list_projects. The note about local repo specs provides some context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pinpole_open_canvasGet the canvas URL for a workspaceB
Return the Pinpole canvas deep link for a project + workspace so the user can open the live, editable architecture diagram in their browser.
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | ||
| workspaceId | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must carry the burden. It states the tool returns a link, implying a read-only operation, but does not disclose side effects, authentication requirements, or rate limits.
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 a single, focused sentence that clearly states the purpose without unnecessary words. It is front-loaded with the key action and outcome.
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?
Considering the tool's simplicity (two parameters, no output schema, no annotations), the description is nearly complete. It could mention that a URL is returned, but the purpose is sufficiently clear.
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 0%, and the description only mentions 'project + workspace' without explaining the parameters in detail. It adds minimal meaning beyond the schema, failing to compensate for the lack of descriptions in the schema.
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 returns a canvas deep link for a specific project and workspace, enabling the user to open the live diagram. It uses a specific verb ('Return') and resource ('canvas deep link'), distinguishing it from siblings like pinpole_draw_on_canvas.
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 gives no guidance on when to use this tool versus alternatives. It does not mention when not to use it or compare with sibling tools such as pinpole_create_architecture.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
pinpole_simulate_costRun a traffic simulation and get costA
Run Pinpole's simulation engine over an architecture graph at a given traffic level and return per-node + total estimated monthly cost, latency (p50/p95/p99), throughput, and throttling/error alerts. Use to answer 'what will this cost / how will it perform'.
| Name | Required | Description | Default |
|---|---|---|---|
| graph | Yes | ||
| traffic | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of disclosing behavior. It describes the tool as running a simulation and returning results, which implies no permanent side effects. However, it does not explicitly state that it is read-only or non-destructive, nor does it mention any potential resource intensity or limits. The description is adequate but leaves some behavioral aspects implicit.
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 consists of two concise sentences. The first sentence front-loads the action and key outputs, and the second sentence clearly states the use case. Every word earns its place, with no fluff or redundancy.
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 complexity of the tool (simulation over a graph with multiple traffic parameters), the description is somewhat brief. It does outline the main output categories (cost, latency, throughput, alerts), which is helpful, and there is no output schema to supplement. However, it does not explain how to interpret the output or any limitations (e.g., accuracy, underlying assumptions). The description meets the minimum requirements but leaves room for more detail.
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?
The input schema has 0% documented description coverage for parameters, meaning the description must compensate by explaining the meaning and structure of parameters. The description mentions 'architecture graph' and 'traffic level' but fails to explain the nested structure of the graph (nodes, edges) or the traffic object (rps, duration, pattern). Users would need to infer parameter meanings from names alone, which is insufficient for a complex tool with nested objects.
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 starts with a specific verb 'Run' and clearly identifies the resource (simulation engine over an architecture graph at a given traffic level). It enumerates outputs (monthly cost, latency percentiles, throughput, alerts) and directly addresses the user's core question. This distinguishes it from sibling tools like pinpole_build_architecture or pinpole_create_architecture, which focus on architecture creation rather than simulation.
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 explicitly states the purpose: 'Use to answer what will this cost / how will it perform.' This gives a clear when-to-use context. It doesn't explicitly state when not to use or list alternatives, but the sibling tools (e.g., pinpole_build_architecture) suggest that this tool is specifically for simulation, not for building or exporting. The guideline is effective but could be more comprehensive.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
9 tool updates
v0.2.1- First observed
pinpole_build_architecture - First observed
pinpole_create_architecture - First observed
pinpole_create_project - First observed
pinpole_draw_on_canvas - First observed
pinpole_export_terraform - First observed
pinpole_list_projects - First observed
pinpole_list_services - First observed
pinpole_open_canvas - First observed
pinpole_simulate_cost
TDQS
Each tool has a clearly distinct purpose: building vs creating architecture, drawing vs simulating, listing vs opening. No overlapping functionality that could confuse an agent.
All tools follow a consistent 'pinpole_verb_noun' pattern in snake_case, making the naming predictable and easy to understand.
With 9 tools, the server covers the main workflows (create, visualize, simulate, export) without being bloated or too sparse. The count feels well-scoped.
The core lifecycle of architecture design is covered: create project, define architecture, draw on canvas, simulate cost, export to Terraform. Minor gaps like update/delete operations are absent but can be handled via the canvas UI.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Your AI Agent's Infrastructure Layer. Connect Claude, Copilot, Codex, or ChatGPT to 200+ managed open source services. Start databases, pipelines, and applications through natural language.
Create and edit architecture diagrams from your AI agent; get an SVG and a live editable canvas.
Compare, estimate, and deploy cloud infrastructure across AWS, GCP, and Azure for AI agents.
Unified API to query AWS, GCP, Azure and generate Terraform/CLI execution kits for AI agents.
Related MCP Servers
- AlicenseBqualityCmaintenanceEnables AI agents to deploy applications to AWS with DevOps capabilities by automatically inferring infrastructure needs from code and generating inspectable Infrastructure as Code specifications.1515Apache 2.0
- AlicenseAqualityCmaintenanceEnables AI assistants to visualize cloud architecture diagrams, generate and import Terraform HCL, and manage infrastructure resources directly from chat through the CloudForge platform.1846MIT
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to parse multi-cloud infrastructure-as-code files, query real-time pricing from AWS, Azure, and GCP, and generate cost estimates and comparison reports.39MIT

Synlake MCP Serverofficial
AlicenseAqualityDmaintenanceEnables AI agents to discover, evaluate, and provision cloud infrastructure across AWS, GCP, and Azure with cross-cloud normalization, cost comparisons, and deployable execution kits.517MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/codeforstartups/pinpole-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server