metacall-mcp
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., "@metacall-mcplist my current deployments"
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.
MetaCall MCP Server
A Model Context Protocol (MCP) server that exposes MetaCall FaaS operations as AI-callable tools, letting LLMs like Claude manage your MetaCall deployments directly.
What this POC does
This server wraps three MetaCall API endpoints as MCP tools:
Tool | Description | Underlying API |
| Lists all active FaaS deployments on your account |
|
| Calls a deployed function by name with arguments |
|
| Deploys a Git repository to MetaCall FaaS |
|
Related MCP server: Swagger MCP Adapter
Prerequisites
Node.js ≥ 18
A MetaCall account with an API token
Setup
npm installConfiguration
Export your MetaCall API token as an environment variable before running:
export METACALL_TOKEN=your_token_hereYou can find your token in the MetaCall Dashboard under Settings → API Tokens.
Running
npm run startOn success you'll see on stderr:
MetaCall MCP Server running...The server communicates over stdio, so Claude Desktop connects to it as a subprocess.
Connecting to Claude Desktop
Add the following to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"metacall": {
"command": "npm",
"args": ["run", "start"],
"cwd": "/path/to/metacall-mcp",
"env": {
"METACALL_TOKEN": "your_token_here"
}
}
}
}Restart Claude Desktop and you'll see the MetaCall tools available in the tools panel.
Tool Reference
list_deployments
No parameters. Returns a JSON array of all deployments on your account.
call_function
Parameter | Type | Description |
| string | Deployment path/suffix (e.g. |
| string | Function name to call |
| array | Arguments to pass to the function |
deploy_from_repo
Parameter | Type | Description |
| string | Git repository URL |
| string? |
|
Building
npm run build
# Output goes to ./dist/This server cannot be installed
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
- Alicense-qualityCmaintenanceA generic MCP server that dynamically converts OpenAPI-defined REST APIs into tools for LLMs like Claude. It supports multiple authentication methods and transport protocols, enabling seamless interaction with any OpenAPI-compliant API.Last updated17MIT
- AlicenseAqualityDmaintenanceA TypeScript-based MCP server that integrates with Swagger/OpenAPI specifications to expose API endpoints as tools for Large Language Models (LLMs), enabling natural language interaction with any OpenAPI-compliant API.Last updated49MIT
- Alicense-qualityDmaintenanceMCP Server for interacting with the Langflow API via a natural language interface. It exposes Langflow functionalities as tools for LLMs.Last updatedMIT
- Flicense-qualityDmaintenanceMulti-cloud MCP server that exposes cloud AI models as tools for AI CLI agents, supporting streaming, conversation history, parallel multi-model queries, and dynamic model discovery.Last updated2
Related MCP Connectors
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server exposing the Backtest360 engine API as tools for AI agents.
MCP server providing access to the Scorecard API to evaluate and optimize LLM systems.
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/AshutoshSharma-pixel/metacall-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server