POEM MCP Server
OfficialTranslates POEM specs into Kotlin code, providing language-specific type mappings and structured translation briefs.
Translates POEM specs into Python code, providing language-specific type mappings and structured translation briefs.
Translates POEM specs into Rust code, providing language-specific type mappings and structured translation briefs.
Translates POEM specs into Swift code, providing language-specific type mappings and structured translation briefs.
Translates POEM specs into TypeScript code, providing language-specific type mappings and structured translation briefs.
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., "@POEM MCP ServerTranslate this poem to Go"
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.
POEM MCP Server
MCP server for POEM (Pseudo-code Oriented Executable Markup).
Write specs once, get code in any language.
Tools
Tool | What it does |
| Parse a .poem file into structured elements |
| Check syntax and naming conventions |
| Prepare a spec for translation to any language |
Related MCP server: PlugLayer MCP Server
Install
Clone and build:
git clone https://github.com/openpoem/poem-mcp.git
cd poem-mcp
npm install && npm run buildConfigure
Add to your Claude Desktop config (claude_desktop_config.json):
{
"mcpServers": {
"poem": {
"command": "node",
"args": ["/path/to/poem-mcp/dist/mcp.js"]
}
}
}Usage
Read a POEM
"Read this poem file and explain what it does"
The poem_read tool parses .poem files into structured elements (constants, structs, functions, enums, etc).
Validate a POEM
"Validate this poem spec"
Checks for syntax errors, naming convention compliance, and structural completeness.
Translate a POEM
"Translate this poem to Python"
The tool parses and validates the spec, then provides a structured translation brief with language-specific type mappings. The LLM then generates idiomatic code.
Supported targets: Python, TypeScript, Go, Rust, Java, Swift, Kotlin, SQL, and any other language.
Example
// pricing.poem
const TAX_RATE = 0.21;
struct Product {
name: string;
price: float;
}
fn total(p: Product, qty: int) -> float {
return p.price * qty * (1 + TAX_RATE);
}Ask: "Translate to Go" and get:
const TAX_RATE = 0.21
type Product struct {
Name string
Price float64
}
func Total(p Product, qty int64) float64 {
return p.Price * float64(qty) * (1 + TAX_RATE)
}Origin
Built by OpenPoem
License
MIT
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 Servers
- FlicenseAqualityDmaintenanceConverts natural language queries into valid GraphQL queries and executes them against GraphQL APIs. Includes schema introspection, query validation, execution with authentication, and query history tracking.Last updated524

PlugLayer MCP Serverofficial
AlicenseCqualityBmaintenanceEnables deploying and managing infrastructure via natural language, including project/domain management, compute nodes, image deployment, and CI/CD integration.Last updated70MIT- Alicense-qualityDmaintenanceEnables natural language exploration of OMOP CDM databases for concept discovery, patient count queries, and cohort SQL generation with support for multiple database backends.Last updated1MIT
- AlicenseBqualityDmaintenanceEnables orchestrating secure software development pipelines with domain-specific compliance (HIPAA, PCI-DSS, etc.), generating pseudocode, threat models, and CI/CD from user stories via natural language.Last updated17MIT
Related MCP Connectors
Manage projects, tasks, time tracking, and team collaboration through natural language.
GibsonAI MCP server: manage your databases with natural language
Query PostgreSQL databases in plain English — LLM-generated, safety-validated SQL.
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/openpoem/poem-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server