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: OpenAPI MCP Server
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.
Latest Blog Posts
- 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