Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
MCP Orchestrator Server
Claim
by
mokafari
GitHub
OS Automation
Developer Tools
JavaScript
MIT License
13
Reddit
Discord
Overview
Inspect
New
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
orchestrator-server
data
docs
src
test
CHANGELOG.md
.gitignore
LICENSE
package.json
package-lock.json
README.md
tsconfig.json
{
"
name
"
:
"
orchestrator-server
"
,
"
version
"
:
"
1.1.0
"
,
"
description
"
:
"
MCP server for task orchestration and coordination
"
,
"
type
"
:
"
module
"
,
"
main
"
:
"
build/index.js
"
,
"
scripts
"
: {
"
build
"
:
"
tsc && node -e
\"
require('fs').chmodSync('build/index.js', '755')
\"
"
,
"
start
"
:
"
node build/index.js
"
,
"
dev
"
:
"
tsc-watch --onSuccess
\"
node build/index.js
\"
"
,
"
test
"
:
"
node test/test-instance.js
"
,
"
test:coordination
"
:
"
node test/coordination-test.js
"
,
"
clean
"
:
"
rm -rf build/
"
,
"
prepare
"
:
"
npm run clean && npm run build
"
},
"
keywords
"
: [
"
mcp
"
,
"
orchestration
"
,
"
task-management
"
,
"
coordination
"
],
"
author
"
:
""
,
"
license
"
:
"
MIT
"
,
"
dependencies
"
: {
"
@modelcontextprotocol/sdk
"
:
"
^0.1.0
"
},
"
devDependencies
"
: {
"
@types/node
"
:
"
^20.0.0
"
,
"
typescript
"
:
"
^5.0.0
"
,
"
tsc-watch
"
:
"
^6.0.0
"
},
"
engines
"
: {
"
node
"
:
"
>=18.0.0
"
},
"
files
"
: [
"
build/
"
,
"
data/
"
,
"
docs/
"
,
"
README.md
"
,
"
LICENSE
"
],
"
repository
"
: {
"
type
"
:
"
git
"
,
"
url
"
:
"
git+https://github.com/username/orchestrator-server.git
"
},
"
bugs
"
: {
"
url
"
:
"
https://github.com/username/orchestrator-server/issues
"
},
"
homepage
"
:
"
https://github.com/username/orchestrator-server#readme
"
}