We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/linancn/tiangong-lca-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
export function regOpenLcaResources(server: McpServer) {
server.resource('Guidence for LCA calculation', `resource://openlca`, (request) => {
return {
contents: [
{
uri: 'resource://openlca',
mimeType: 'text/plain',
text: `The workflow to perform LCA calculations using the MCP tool is as follows:
1. Use the OpenLCA_Impact_Assessment_Tool to list all LCIA (Life Cycle Impact Assessment) method UUIDs and their corresponding names.
2. Use the OpenLCA_List_System_Processes_Tool to list all system process UUIDs and their corresponding names.
3. Use the OpenLCA_Impact_Assessment_Tool to perform LCA calculations.`,
},
],
};
});
}